spacebar/api/src/routes/template.ts.disabled
Flam3rboy d2d7dd0561 Revert "🚧 webhook"
This reverts commit df2b83ac158be1e7233d8edce59033c15c193599.
2021-09-16 20:49: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;