yanic/webserver/config.go
2018-01-13 15:06:18 +01:00

8 lines
137 B
Go

package webserver
type Config struct {
Enable bool `toml:"enable"`
Bind string `toml:"bind"`
Webroot string `toml:"webroot"`
}