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.

10 lines
502 B

3 years ago
  1. package config
  2. type AwsS3 struct {
  3. Bucket string `mapstructure:"bucket" json:"bucket" yaml:"bucket"`
  4. Region string `mapstructure:"region" json:"region" yaml:"region"`
  5. SecretID string `mapstructure:"secret-id" json:"secretID" yaml:"secret-id"`
  6. SecretKey string `mapstructure:"secret-key" json:"secretKey" yaml:"secret-key"`
  7. BaseURL string `mapstructure:"base-url" json:"baseURL" yaml:"base-url"`
  8. PathPrefix string `mapstructure:"path-prefix" json:"pathPrefix" yaml:"path-prefix"`
  9. }