break: rename ClientCommand.PomodoroSettings -> .Settings

This commit is contained in:
Sebastian Mark 2024-10-26 09:16:48 +02:00
parent 61b2f71bf3
commit 16bc946a30
2 changed files with 6 additions and 6 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
PomodoroSettings GoTomatoPomodoroConfig `json:"settings"` // pomodoro config
Command string `json:"command"` // comman send to the server
Password string `json:"password"` // pomodoro control password
Settings GoTomatoPomodoroConfig `json:"settings"` // pomodoro config
}
type Client struct {