fastpastebin/config/http.go

9 lines
215 B
Go
Raw Normal View History

2018-04-30 18:42:17 +05:00
package config
// ConfigHTTP describes HTTP server configuration.
2018-04-30 18:42:17 +05:00
type ConfigHTTP struct {
Address string `yaml:"address"`
Port string `yaml:"port"`
AllowInsecure bool `yaml:"allow_insecure"`
}