Files
athens/pkg/config/disk.go
Vanes Angelo 900cb4f7c1 Upgrade to AWS SDK v2 (#1938) (#1950)
Upgrades the AWS SDK to v2. AWS S3 bucket urls will now error if they are not prefixed with a schema (example: https://).
2024-04-28 21:38:42 -07:00

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