6 lines
119 B
Go
6 lines
119 B
Go
|
package config
|
||
|
|
||
|
type Local struct {
|
||
|
Path string `mapstructure:"path" json:"path" yaml:"path"` // 本地文件路径
|
||
|
}
|