Files
PandaX/pkg/config/oss.go
2023-08-22 15:17:14 +08:00

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"`
}