|
package main
|
|
|
|
import (
|
|
_ "mongo.games.com/game"
|
|
_ "mongo.games.com/game/machine/action"
|
|
"mongo.games.com/goserver/core"
|
|
"mongo.games.com/goserver/core/module"
|
|
)
|
|
|
|
func main() {
|
|
defer core.ClosePackages()
|
|
core.LoadPackages("config.json")
|
|
w := module.Start()
|
|
w.Wait("main()")
|
|
}
|