8 lines
246 B
Go
8 lines
246 B
Go
package config
|
|
|
|
type MinioConfig struct {
|
|
Endpoint string `env:"GUARD_MINIO_ENDPOINT" default:"localhost:9000"`
|
|
AccessKey string `env:"GUARD_MINIO_ACCESS_KEY" required:"true"`
|
|
SecretKey string `env:"GUARD_MINIO_SECRET_KEY" required:"true"`
|
|
}
|