This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/api/src/routes/template.ts.disabled
2021-09-03 21:28:07 +02:00

11 lines
227 B
Plaintext

//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;