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
424 B
9 lines
424 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"`
|
|
OssType string `mapstructure:"oss-type" json:"ossType" yaml:"oss-type"`
|
|
UseMultipoint bool `mapstructure:"use-multipoint" json:"useMultipoint" yaml:"use-multipoint"`
|
|
}
|