10 lines
283 B
Go
10 lines
283 B
Go
|
package config
|
||
|
|
||
|
type S3Config struct {
|
||
|
BufferBucket string `mapstructure:"buffer_bucket"`
|
||
|
Endpoint string `mapstructure:"endpoint"`
|
||
|
Region string `mapstructure:"region"`
|
||
|
AccessKey string `mapstructure:"access_key"`
|
||
|
SecretKey string `mapstructure:"secret_key"`
|
||
|
}
|