增加userList接口

This commit is contained in:
lik
2026-06-04 14:50:05 +08:00
parent 6fe4ba9fdd
commit b3f933e30a
2 changed files with 46 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ class ApiRouter {
userRouter.post('/signout', this.handler.signout.bind(this.handler));
userRouter.post('/userInfo', this.handler.userInfo.bind(this.handler));
userRouter.post('/list', this.handler.userList.bind(this.handler));
this.router.use(userRouter.routes());
this.printRoutes(this.router.stack);