This commit is contained in:
aozhiwei 2024-05-25 12:56:03 +08:00
parent 0493fd6183
commit a8a845cb33

View File

@ -22,3 +22,14 @@ func (this *Stat) caUpdateSession(c *gin.Context) {
}
c.JSON(200, rspObj)
}
func (this *Stat) caGetonlineNum(c *gin.Context) {
rspObj := struct {
ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errmsg"`
}{
ErrCode: 0,
ErrMsg: "",
}
c.JSON(200, rspObj)
}