format: improve variable declaration style

- change variable declarations to use a grouped format

🤖
This commit is contained in:
Sebastian Mark 2024-10-27 21:32:57 +01:00
parent 912dfa62f2
commit f26f12ef98
3 changed files with 10 additions and 5 deletions

View file

@ -13,7 +13,8 @@ import (
)
var (
config ChronoTomato.Config
config ChronoTomato.Config
parameter_url = flag.String("url", "", "GoTomato Server URL (eg ws://localhost:8080/ws)")
parameter_password = flag.String("password", "", "Control password for pomodoro session")
configfile = flag.String("config", "", "Path to config file")

View file

@ -8,8 +8,10 @@ import (
func desktopNotifications(pomodoro GoTomato.ServerMessage) {
var duration int
var notification string
var (
duration int
notification string
)
mode := pomodoro.Mode
session := pomodoro.Session

View file

@ -8,8 +8,10 @@ import (
)
func terminalOutput(pomodoro GoTomato.ServerMessage) {
var modePrefix string
var timerOutput string
var (
modePrefix string
timerOutput string
)
fmt.Print("\033[H\033[2J") // Clears the screen