ChronoTomato/ChronoTomato.go
Sebastian Mark 064056e8cb feat: update module path
- modify go.mod to reflect the new module path
- update config file path in the main function
- adjust import statements in various internal packages
- add install instructions to README

🤖
2024-10-23 21:21:23 +02:00

13 lines
230 B
Go

package main
//// TODO
// - add progress bar (https://github.com/charmbracelet/bubbles?tab=readme-ov-file#progress)
// - add controls
import (
"git.smsvc.net/pomodoro/ChronoTomato/cmd/client"
)
func main() {
client.Start()
}