summary refs log tree commit diff
path: root/api/src/routes/applications/index.ts
diff options
context:
space:
mode:
authorFeatyre <twooter.0g179@simplelogin.co>2022-01-26 08:58:36 +0800
committerFeatyre <twooter.0g179@simplelogin.co>2022-01-26 08:58:36 +0800
commitb01a26cdceb2840b44da7033e2f6615a27273595 (patch)
treef133ebfaf2c56e2e9fa1bd1cbb57bb7cf0c1a53e /api/src/routes/applications/index.ts
parentchange line (diff)
downloadserver-b01a26cdceb2840b44da7033e2f6615a27273595.tar.xz
Dev portal + categories load db
Diffstat (limited to 'api/src/routes/applications/index.ts')
-rw-r--r--api/src/routes/applications/index.ts11
1 files changed, 11 insertions, 0 deletions
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;