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"`
}