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.
10 lines
325 B
10 lines
325 B
package config
|
|
|
|
type GormSettings struct {
|
|
Settings []Settings `mapstructure:"settings" json:"settings" yaml:"settings"`
|
|
}
|
|
|
|
type Settings struct {
|
|
DsnName string `mapstructure:"dsn-name" json:"dsnName" yaml:"dsn-name"`
|
|
BindTables []interface{} `mapstructure:"bind-tables" json:"bindTables" yaml:"bind-tables"`
|
|
}
|
|
|