Sebastian Mark
064056e8cb
- 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
🤖
13 lines
230 B
Go
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()
|
|
}
|