diff --git a/Config.go b/Config.go index d6c8d07..7301f47 100644 --- a/Config.go +++ b/Config.go @@ -2,22 +2,22 @@ package main type Config struct { App struct { - Name string - Version string - MotdHTML string - Debug bool + Name string `json:"name"` + Version string `json:"version"` + MotdHTML string `json:"motd"` + Debug bool `json:"debug"` } Web struct { - Port int - BindTo string - Extern string - Title string + Port int `json:"port"` + BindTo string `json:"bind_to"` + Extern string `json:"extern"` + Title string `json:"title"` } Hub struct { - Address string - Port int - Tag string + Address string `json:"address"` + Port int `json:"port"` + Tag string `json:"tag"` } }