mirror of
https://github.com/gomods/athens
synced 2026-02-03 07:30:32 +00:00
Upgrades the AWS SDK to v2. AWS S3 bucket urls will now error if they are not prefixed with a schema (example: https://).
7 lines
181 B
Go
7 lines
181 B
Go
package config
|
|
|
|
// External specifies configuration for an external http storage.
|
|
type External struct {
|
|
URL string `envconfig:"ATHENS_EXTERNAL_STORAGE_URL" validate:"required"`
|
|
}
|