2018-01-13 14:41:49 +01:00
|
|
|
package webserver
|
|
|
|
|
|
|
|
type Config struct {
|
2024-07-05 02:08:54 +02:00
|
|
|
Enable bool `toml:"enable"`
|
|
|
|
Bind string `toml:"bind"`
|
|
|
|
Webroot string `toml:"webroot"`
|
|
|
|
Prometheus *Prometheus `toml:"prometheus"`
|
2018-01-13 14:41:49 +01:00
|
|
|
}
|