You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
646 B
9 lines
646 B
package config
|
|
|
|
type System struct {
|
|
Env string `mapstructure:"env" json:"env" yaml:"env"` // 环境值
|
|
Addr int `mapstructure:"addr" json:"addr" yaml:"addr"` // 端口值
|
|
DbType string `mapstructure:"db-type" json:"dbType" yaml:"db-type"` // 数据库类型:mysql(默认)|sqlite|sqlserver|postgresql
|
|
OssType string `mapstructure:"oss-type" json:"ossType" yaml:"oss-type"` // Oss类型
|
|
UseMultipoint bool `mapstructure:"use-multipoint" json:"useMultipoint" yaml:"use-multipoint"` // 多点登录拦截
|
|
}
|