You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
414 B
9 lines
414 B
package config
|
|
|
|
type HuaWeiObs struct {
|
|
Path string `mapstructure:"path" json:"path" yaml:"path"`
|
|
Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
|
|
Endpoint string `mapstructure:"endpoint" json:"endpoint" yaml:"endpoint"`
|
|
AccessKey string `mapstructure:"access-key" json:"accessKey" yaml:"access-key"`
|
|
SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
|
|
}
|