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
203 B
Go
7 lines
203 B
Go
package config
|
|
|
|
// DiskConfig specifies the properties required to use Disk as the storage backend.
|
|
type DiskConfig struct {
|
|
RootPath string `envconfig:"ATHENS_DISK_STORAGE_ROOT" validate:"required"`
|
|
}
|