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

Merge pull request #83 from notsapinho/master

🖥️ /science route
This commit is contained in:
Flam3rboy 2021-04-07 12:23:59 +02:00 committed by GitHub
commit 62af1b918a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;