yanic/webserver/config.go

8 lines
137 B
Go

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