1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/http/data.go
2022-11-30 19:15:47 +01:00

11 lines
269 B
Go

package http
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"`
}