1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00
strimertul/modules/http/data.go

11 lines
269 B
Go
Raw Normal View History

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