7 lines
155 B
Go
7 lines
155 B
Go
package models
|
|
|
|
type BasicConfig struct {
|
|
Domain string `mapstructure:"domain"`
|
|
Other map[string]interface{} `mapstructure:",remain"`
|
|
}
|