2021-11-29 13:56:01 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
|
|
type Local struct {
|
2022-05-29 04:21:24 +00:00
|
|
|
Path string `mapstructure:"path" json:"path" yaml:"path"` // 本地文件访问路径
|
|
|
|
|
StorePath string `mapstructure:"store-path" json:"store-path" yaml:"store-path"` // 本地文件存储路径
|
2021-11-29 13:56:01 +00:00
|
|
|
}
|