mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
* pkg/storage: add External implementation * fix conflicts * use newly instantiated client
13 lines
272 B
Go
13 lines
272 B
Go
package config
|
|
|
|
// StorageConfig provides configs for various storage backends
|
|
type StorageConfig struct {
|
|
Disk *DiskConfig
|
|
GCP *GCPConfig
|
|
Minio *MinioConfig
|
|
Mongo *MongoConfig
|
|
S3 *S3Config
|
|
AzureBlob *AzureBlobConfig
|
|
External *External
|
|
}
|