gin.go 261 B

12345678910
  1. package config
  2. type Gin struct {
  3. ApiAddr string `mapstructure:"api-addr"`
  4. AdminAddr string `mapstructure:"admin-addr"`
  5. Mode string
  6. ResourcesPath string `mapstructure:"resources-path"`
  7. TrustProxy string `mapstructure:"trust-proxy"`
  8. }