From c548f10d6396a7995fc29544e0beeee104b8b3b3 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Mon, 6 Mar 2023 15:10:00 +0800 Subject: [PATCH] cleanup comment --- server/src/routes/games.route.ts | 2 -- 1 file changed, 2 deletions(-) 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;