fix: remove default values from GoTomatoServerConfig model

This commit is contained in:
Sebastian Mark 2024-10-20 20:09:34 +02:00
parent 914421d7a5
commit 45c527cc79

View file

@ -8,6 +8,6 @@ type GoTomatoTimerConfig struct {
} }
type GoTomatoServerConfig struct { type GoTomatoServerConfig struct {
ListenAddress string `json:"listenAddress, default:"0.0.0.0"` ListenAddress string `json:"listenAddress"`
ListenPort int `json:"listenPort, default:8080"` ListenPort int `json:"listenPort"`
} }