diff options
Diffstat (limited to 'api/src/routes/template.ts.disabled')
-rw-r--r-- | api/src/routes/template.ts.disabled | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/api/src/routes/template.ts.disabled b/api/src/routes/template.ts.disabled deleted file mode 100644 index fcc59ef4..00000000 --- a/api/src/routes/template.ts.disabled +++ /dev/null @@ -1,11 +0,0 @@ -//TODO: this is a template for a generic route - -import { Router, Request, Response } from "express"; -import { route } from "@fosscord/api"; -const router = Router(); - -router.get("/",route({}), async (req: Request, res: Response) => { - res.json({}); -}); - -export default router; |