You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package config
|
|
|
|
type CDN struct {
|
|
Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
|
|
Op string `mapstructure:"op" json:"op" yaml:"op"`
|
|
Password string `mapstructure:"password" json:"password" yaml:"password"`
|
|
}
|