oss_huawei.go 416 B

123456789
  1. package config
  2. type HuaWeiObs struct {
  3. Path string `mapstructure:"path" json:"path" yaml:"path"`
  4. Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
  5. Endpoint string `mapstructure:"endpoint" json:"endpoint" yaml:"endpoint"`
  6. AccessKey string `mapstructure:"access-key" json:"access-key" yaml:"access-key"`
  7. SecretKey string `mapstructure:"secret-key" json:"secret-key" yaml:"secret-key"`
  8. }