10 lines
75 B
Go
Raw Normal View History

2024-01-24 20:57:31 +01:00
package main
import (
"server/game"
)
func main() {
2024-01-26 00:29:05 +01:00
game.New().Run()
2024-01-24 20:57:31 +01:00
}