2019-04-22 02:59:20 +00:00

14 lines
215 B
Go

package http
import (
bm "go-common/library/net/http/blademaster"
)
func onlineInfo(c *bm.Context) {
c.JSON(webSvc.OnlineArchiveCount(c), nil)
}
func onlineList(c *bm.Context) {
c.JSON(webSvc.OnlineList(c))
}