10 lines
75 B
Go
Raw Permalink Normal View History

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