This commit is contained in:
Sebastian Mark 2024-10-22 13:13:41 +02:00
commit 11c599a371
11 changed files with 325 additions and 0 deletions

13
ChronoTomato.go Normal file
View file

@ -0,0 +1,13 @@
package main
//// TODO
// - add progress bar (https://github.com/charmbracelet/bubbles?tab=readme-ov-file#progress)
// - add controls
import (
"ChronoTomato/cmd/client"
)
func main() {
client.Start()
}