strimertul/webserver/data.go

11 lines
274 B
Go

package webserver
const ServerConfigKey = "http/config"
type ServerConfig struct {
Bind string `json:"bind"`
EnableStaticServer bool `json:"enable_static_server"`
Path string `json:"path"`
KVPassword string `json:"kv_password"`
}