10 lines
75 B
Go
10 lines
75 B
Go
package main
|
|
|
|
import (
|
|
"server/game"
|
|
)
|
|
|
|
func main() {
|
|
game.New().Run()
|
|
}
|