main.go 317 B

1234567891011121314
  1. package gamelogic
  2. import (
  3. "bet24.com/servers/games/quickludo/config"
  4. "bet24.com/servers/insecureframe/frame"
  5. )
  6. var Stopping bool
  7. func Run() {
  8. Stopping = false
  9. frame.RunFrameWithLogServer(newGameSink(),
  10. config.Server.ChannelUrl, config.Server.ChannelPassword, config.Server.RedisDB, config.Server.LogPath)
  11. }