yanic/webserver/config.go

9 lines
205 B
Go

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