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
505 B
9 lines
505 B
5 months ago
|
package config
|
||
|
|
||
|
type Minio struct {
|
||
|
Endpoint string `mapstructure:"endpoint" json:"endpoint" yaml:"endpoint"` //端点
|
||
|
AccessKeyID string `mapstructure:"accessKeyID" json:"accessKeyID" yaml:"access-key-id"` //用户ID
|
||
|
SecretAccessKey string `mapstructure:"secretAccessKey" json:"secretAccessKey" yaml:"secret-access-key"` //密钥
|
||
|
UseSSL bool `mapstructure:"useSSL" json:"useSSL" yaml:"use-ssl"` //是否使用ssl
|
||
|
}
|