roommgr.go 327 B

123456789101112131415161718
  1. package privateroom
  2. var mgr *roomManager
  3. type roomManager struct {
  4. }
  5. func Run() {
  6. mgr = new(roomManager)
  7. }
  8. func (this *roomManager) roomHistory(req *roomHistory_req) roomHistory_resp {
  9. return roomHistory(req)
  10. }
  11. func (this *roomManager) chairHistory(req *chairHistory_req) chairHistory_resp {
  12. return chairHistory(req)
  13. }