package models type GoTomatoTimerConfig struct { Work int `json:"work"` ShortBreak int `json:"shortBreak"` LongBreak int `json:"longBreak"` Sessions int `json:"sessions"` } type GoTomatoServerConfig struct { ListenAddress string `json:"listenAddress, default:"0.0.0.0"` ListenPort int `json:"listenPort, default:8080"` }