11 lines
154 B
TypeScript
11 lines
154 B
TypeScript
import { Router } from "express";
|
|
|
|
const router = Router();
|
|
|
|
router.post("/", (req, res) => {
|
|
// TODO:
|
|
res.sendStatus(204);
|
|
});
|
|
|
|
export default router;
|