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.
11 lines
325 B
11 lines
325 B
4 months ago
|
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"`
|
||
|
}
|