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
7 lines
180 B
Go
7 lines
180 B
Go
package config
|
|
|
|
// External specifies configuration for an external http storage
|
|
type External struct {
|
|
URL string `validate:"required" envconfig:"ATHENS_EXTERNAL_STORAGE_URL"`
|
|
}
|