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

  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:"accessKey" yaml:"access-key"`
  7. SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
  8. }