initial commit

This commit is contained in:
m.zare
2026-04-10 18:25:21 +03:30
commit 77ca6c34a3
263 changed files with 34470 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package config
// AzureServiceBusConfig holds configuration for Azure Service Bus
type AzureServiceBusConfig struct {
// ConnectionString is the Azure Service Bus connection string
// If provided, this will be used for authentication
ConnectionString string
// Namespace is the Azure Service Bus namespace
// Required when using managed identity authentication
Namespace string
// UseManagedIdentity determines whether to use managed identity for authentication
// If true, managed identity will be used instead of connection string
UseManagedIdentity bool
}