diff --git a/api/src/routes/template.ts.disabled b/api/src/routes/template.ts.disabled new file mode 100644 index 00000000..ad785f10 --- /dev/null +++ b/api/src/routes/template.ts.disabled @@ -0,0 +1,10 @@ +//TODO: this is a template for a generic route + +import { Router, Request, Response } from "express"; +const router = Router(); + +router.get("/", async (req: Request, res: Response) => { + res.send({}); +}); + +export default router;