11 lines
269 B
Go
11 lines
269 B
Go
|
package config
|
||
|
|
||
|
type file struct {
|
||
|
Type string `yaml:"type"`
|
||
|
Path string `yaml:"path"`
|
||
|
Endpoint string `yaml:"endpoint"`
|
||
|
AccessId string `yaml:"accessId"`
|
||
|
AccessSecret string `yaml:"accessSecret"`
|
||
|
BucketName string `yaml:"bucketName"`
|
||
|
}
|