system.go 241 B

123456
  1. package config
  2. type System struct {
  3. Env string `mapstructure:"env" json:"env" yaml:"env"` // 环境值
  4. StorePath string `mapstructure:"store-path" json:"store-path" yaml:"store-path"` // 文件存储根目录
  5. }