user_announce.go 297 B

12345678910111213141516
  1. package gatesink
  2. import (
  3. "bet24.com/log"
  4. "bet24.com/servers/coreservice/client"
  5. )
  6. // 公告列表
  7. func (this *user) announceList(msg, data string) {
  8. resp := client.AnnounceList()
  9. if resp.RetCode != 1 {
  10. log.Debug("announceList failed %v", resp)
  11. }
  12. this.WriteMsg(msg, resp.Data)
  13. return
  14. }