mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
10 lines
223 B
Go
10 lines
223 B
Go
package config
|
|
|
|
type Oss struct {
|
|
Endpoint string `yaml:"endpoint"`
|
|
AccessKey string `yaml:"accessKey"`
|
|
SecretKey string `yaml:"secretKey"`
|
|
BucketName string `yaml:"bucketName"`
|
|
UseSSL bool `yaml:"useSSL"`
|
|
}
|