diff --git a/server/src/routes/games.route.ts b/server/src/routes/games.route.ts index 03036eb..699a6d2 100644 --- a/server/src/routes/games.route.ts +++ b/server/src/routes/games.route.ts @@ -7,6 +7,4 @@ router.route("/").get(controller.getActivePublicGames).post(controller.createGam router.route("/:code").get(controller.getActiveGame); -// todo: api for updating games/moves requiring authentication - export default router;