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.
10 lines
507 B
10 lines
507 B
package config
|
|
|
|
type TencentCOS struct {
|
|
Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
|
|
Region string `mapstructure:"region" json:"region" yaml:"region"`
|
|
SecretID string `mapstructure:"secret-id" json:"secretID" yaml:"secret-id"`
|
|
SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
|
|
BaseURL string `mapstructure:"base-url" json:"baseURL" yaml:"base-url"`
|
|
PathPrefix string `mapstructure:"path-prefix" json:"pathPrefix" yaml:"path-prefix"`
|
|
}
|