9 lines
215 B
Go
9 lines
215 B
Go
package config
|
|
|
|
// ConfigHTTP describes HTTP server configuration.
|
|
type ConfigHTTP struct {
|
|
Address string `yaml:"address"`
|
|
Port string `yaml:"port"`
|
|
AllowInsecure bool `yaml:"allow_insecure"`
|
|
}
|