main.go 345 B

1234567891011121314151617181920
  1. package gamelogic
  2. import (
  3. "bet24.com/servers/games/masharie_table/config"
  4. "bet24.com/servers/insecureframe/frame"
  5. )
  6. var Stopping bool
  7. func Run() {
  8. if test() {
  9. return
  10. }
  11. Stopping = false
  12. frame.RunFrame(newGameSink(), config.Server.ChannelUrl, config.Server.ChannelPassword, config.Server.RedisDB)
  13. }
  14. func test() bool {
  15. return false
  16. }