1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/webserver/data.go

11 lines
274 B
Go
Raw Normal View History

package webserver
const ServerConfigKey = "http/config"
type ServerConfig struct {
Bind string `json:"bind"`
EnableStaticServer bool `json:"enable_static_server"`
Path string `json:"path"`
2021-11-21 21:36:48 +00:00
KVPassword string `json:"kv_password"`
}