7 lines
170 B
Go
7 lines
170 B
Go
package config
|
|
|
|
type System struct {
|
|
Port int `mapstructure:"port" json:"port" yaml:"port"`
|
|
DbType string `mapstructure:"db-type" json:"db-type" yaml:"db-type"`
|
|
}
|