整合目前新的详情接口

This commit is contained in:
laodaming
2023-10-17 15:40:44 +08:00
parent ea1335607a
commit 68a31236b3
3 changed files with 16 additions and 0 deletions

View File

@@ -27,6 +27,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/api/websocket/common_notify",
Handler: CommonNotifyHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/websocket/close_websocket",
Handler: CloseWebsocketHandler(serverCtx),
},
},
)
}