online.go 215 B

12345678910111213
  1. package http
  2. import (
  3. bm "go-common/library/net/http/blademaster"
  4. )
  5. func onlineInfo(c *bm.Context) {
  6. c.JSON(webSvc.OnlineArchiveCount(c), nil)
  7. }
  8. func onlineList(c *bm.Context) {
  9. c.JSON(webSvc.OnlineList(c))
  10. }