7 lines
255 B
Go
7 lines
255 B
Go
package config
|
|
|
|
// AzureBlobStorageConfig holds configuration for Azure Blob Storage
|
|
type AzureBlobStorageConfig struct {
|
|
BlobEndpoint string `mapstructure:"blob_endpoint"` // e.g. https://account.blob.core.windows.net - base URL for asset/avatar URLs
|
|
}
|