add config options for atreugo
1 file changed, 5 insertions(+), 3 deletions(-)
changed files
M config/config.go → config/config.go
@@ -20,9 +20,11 @@ Description string `yaml:"description"` } type Server struct { - Name string `yaml:"name,omitempty"` - Host string `yaml:"host"` - Port int64 `yaml:"port"` + Name string `yaml:"name,omitempty"` + Host string `yaml:"host"` + Port int64 `yaml:"port"` + Compress bool `yaml:"compress"` + Development bool `yaml:"development"` } type Config struct {