oss_local.go 258 B

123456
  1. package config
  2. type Local struct {
  3. Path string `mapstructure:"path" json:"path" yaml:"path"` // 本地文件访问路径
  4. StorePath string `mapstructure:"store-path" json:"store-path" yaml:"store-path"` // 本地文件存储路径
  5. }