yanic/webserver/config.go

8 lines
137 B
Go
Raw Normal View History

2018-01-13 14:41:49 +01:00
package webserver
type Config struct {
Enable bool `toml:"enable"`
Bind string `toml:"bind"`
Webroot string `toml:"webroot"`
}