Sebastian Mark
b7a79acdb0
- refactor server package - update package name - rename `StartServer()` to `Start()` - (re)add `GoTomato.go` to call `server.Start()` - update README
9 lines
104 B
Go
9 lines
104 B
Go
package main
|
|
|
|
import (
|
|
"git.smsvc.net/pomodoro/GoTomato/cmd/server"
|
|
)
|
|
|
|
func main() {
|
|
server.Start()
|
|
}
|