diff options
Diffstat (limited to 'api/src/routes/store/applications.ts')
-rw-r--r-- | api/src/routes/store/applications.ts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/api/src/routes/store/applications.ts b/api/src/routes/store/applications.ts deleted file mode 100644 index 352c1752..00000000 --- a/api/src/routes/store/applications.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Request, Response, Router } from "express"; -import { route } from "@fosscord/api"; - -const router: Router = Router(); - -router.get("/applications/:id", route({}), async (req: Request, res: Response) => { - //TODO - const { id } = req.params; - res.json([]).status(200); -}); - -export default router; |