Files
athens/pkg/config/external.go
Marwan Sulaiman 3c4db4ce86 pkg/storage: add External implementation (#1587)
* pkg/storage: add External implementation

* fix conflicts

* use newly instantiated client
2020-03-27 13:35:52 -04:00

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"`
}