oss.go 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. package config
  2. type Local struct {
  3. Path string `mapstructure:"path" json:"path" yaml:"path" `
  4. }
  5. type Qiniu struct {
  6. Zone string `mapstructure:"zone" json:"zone" yaml:"zone"`
  7. Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
  8. ImgPath string `mapstructure:"img-path" json:"imgPath" yaml:"img-path"`
  9. UseHTTPS bool `mapstructure:"use-https" json:"useHttps" yaml:"use-https"`
  10. AccessKey string `mapstructure:"access-key" json:"accessKey" yaml:"access-key"`
  11. SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
  12. UseCdnDomains bool `mapstructure:"use-cdn-domains" json:"useCdnDomains" yaml:"use-cdn-domains"`
  13. }
  14. type AliyunOSS struct {
  15. Endpoint string `mapstructure:"endpoint" json:"endpoint" yaml:"endpoint"`
  16. AccessKeyId string `mapstructure:"access-key-id" json:"accessKeyId" yaml:"access-key-id"`
  17. AccessKeySecret string `mapstructure:"access-key-secret" json:"accessKeySecret" yaml:"access-key-secret"`
  18. BucketName string `mapstructure:"bucket-name" json:"bucketName" yaml:"bucket-name"`
  19. BucketUrl string `mapstructure:"bucket-url" json:"bucketUrl" yaml:"bucket-url"`
  20. type TencentCOS struct {
  21. Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
  22. Region string `mapstructure:"region" json:"region" yaml:"region"`
  23. SecretID string `mapstructure:"secret-id" json:"secretID" yaml:"secret-id"`
  24. SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
  25. BaseURL string `mapstructure:"base-url" json:"baseURL" yaml:"base-url"`
  26. PathPrefix string `mapstructure:"path-prefix" json:"pathPrefix" yaml:"path-prefix"`
  27. }