break: rename GoTomatoPomodoroConfig -> PomodoroConfig

This commit is contained in:
Sebastian Mark 2024-10-26 09:20:29 +02:00
parent 0180aea8c1
commit c20d36d2d2
5 changed files with 13 additions and 13 deletions

View file

@ -8,9 +8,9 @@ import (
// ClientCommand represents a command from the client (start/stop).
type ClientCommand struct {
Command string `json:"command"` // comman send to the server
Password string `json:"password"` // pomodoro control password
Settings GoTomatoPomodoroConfig `json:"settings"` // pomodoro config
Command string `json:"command"` // comman send to the server
Password string `json:"password"` // pomodoro control password
Settings PomodoroConfig `json:"settings"` // pomodoro config
}
type Client struct {