rowboz/main.go

11 lines
113 B
Go
Raw Normal View History

2023-12-01 18:38:58 +01:00
package main
2023-12-01 19:15:30 +01:00
import (
"gitea.ligthert.net/golang/rowboz/game"
)
2023-12-01 18:38:58 +01:00
func main() {
2023-12-01 19:10:47 +01:00
game.init()
game.director()
2023-12-01 18:38:58 +01:00
}