protocol.go 485 B

12345678910111213141516171819
  1. package gamelogic
  2. const (
  3. Broadcast = "broadcast"
  4. TotalResult = "totalresult"
  5. Option = "Option"
  6. Result = "result"
  7. Config = "config"
  8. History = "history"
  9. Bet = "bet"
  10. BatchBet = "batchbet"
  11. BetClear = "betclear"
  12. Betfailed = "betfailed"
  13. BetRecord = "betrecord"
  14. BetList = "betlist" // 投注列表
  15. Popularity = "popularity" // 人气值
  16. WinRank = "winrank" // 赢金排行榜
  17. DayWin = "daywin" // 今日赢金
  18. )