improve backward compatibility with dcwebui2 config files
This commit is contained in:
parent
2047762e62
commit
ee59a4a773
22
Config.go
22
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"`
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user