添加debug接口

This commit is contained in:
luying
2021-03-05 11:45:33 +08:00
parent 8a122b6a4d
commit b1ceb1b695
5 changed files with 126 additions and 2 deletions

View File

@@ -15,4 +15,5 @@ export default (app: Application) => {
router.post('/user/bind', tokenParser, controller.account.bind);
router.post('/user/authentication', tokenParser, controller.account.authentication);
router.post('/game/getserverlist', tokenParser, controller.game.getServerList);
router.post('/game/getnotice', tokenParser, controller.game.getnotice);
};