refactor: pacakge version upgrade

This commit is contained in:
meilin.huang
2025-02-27 19:40:31 +08:00
parent 6072bcb111
commit 547e31eae6
16 changed files with 63 additions and 202 deletions

View File

@@ -15,7 +15,7 @@ type System struct {
func (s *System) ReqConfs() *req.Confs {
reqs := [...]*req.Conf{
req.NewGet("", s.ConnectWs),
req.NewGet("", s.ConnectWs).NoRes(),
}
return req.NewConfs("sysmsg", reqs[:]...)
}
@@ -39,7 +39,6 @@ func (s *System) ConnectWs(rc *req.Ctx) {
biz.NotEmpty(clientId, "clientId cannot be empty")
// 权限校验
// rc := req.NewCtxWithGin(g)
err = req.PermissionHandler(rc)
biz.ErrIsNil(err, "sys-websocket connect without permission")