1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 05:02:37 +01:00

🖥️ /science route

This commit is contained in:
Rafael Oliveira 2021-04-07 07:22:09 -03:00
parent 5540d7a9de
commit cb499f0e98

10
src/routes/science.ts Normal file
View File

@ -0,0 +1,10 @@
import { Router } from "express";
const router = Router();
router.post("/", (req, res) => {
// TODO:
res.sendStatus(204);
});
export default router;