oss_local.go 371 B

12345678
  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. ScriptPath string `mapstructure:"script-path" json:"script-path" yaml:"script-path"` //本地脚本存储路径
  6. }