From 821470cc41f7922b3a5f471988e344332a34068d Mon Sep 17 00:00:00 2001 From: Featyre Date: Wed, 26 Jan 2022 08:58:36 +0800 Subject: Dev portal + categories load db --- api/src/routes/applications/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 api/src/routes/applications/index.ts (limited to 'api/src/routes/applications/index.ts') diff --git a/api/src/routes/applications/index.ts b/api/src/routes/applications/index.ts new file mode 100644 index 00000000..28ce42da --- /dev/null +++ b/api/src/routes/applications/index.ts @@ -0,0 +1,11 @@ +import { Request, Response, Router } from "express"; +import { route } from "@fosscord/api"; + +const router: Router = Router(); + +router.get("/", route({}), async (req: Request, res: Response) => { + //TODO + res.send([]).status(200); +}); + +export default router; -- cgit 1.5.1