10 lines
261 B
Go
10 lines
261 B
Go
package config
|
|
|
|
type Gin struct {
|
|
ApiAddr string `mapstructure:"api-addr"`
|
|
AdminAddr string `mapstructure:"admin-addr"`
|
|
Mode string
|
|
ResourcesPath string `mapstructure:"resources-path"`
|
|
TrustProxy string `mapstructure:"trust-proxy"`
|
|
}
|