feat: (re)add GoTomato.go

- refactor server package
  - update package name
  - rename `StartServer()` to `Start()`
- (re)add `GoTomato.go` to call `server.Start()`
- update README
This commit is contained in:
Sebastian Mark 2024-10-19 12:05:10 +02:00
parent c59f737eb7
commit b7a79acdb0
3 changed files with 12 additions and 3 deletions

9
GoTomato.go Normal file
View file

@ -0,0 +1,9 @@
package main
import (
"git.smsvc.net/pomodoro/GoTomato/cmd/server"
)
func main() {
server.Start()
}