From cb499f0e98f40a1cbda0252280128c432788f63a Mon Sep 17 00:00:00 2001 From: Rafael Oliveira <52896767+notsapinho@users.noreply.github.com> Date: Wed, 7 Apr 2021 07:22:09 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=A5=EF=B8=8F=20/science=20route?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/science.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/routes/science.ts diff --git a/src/routes/science.ts b/src/routes/science.ts new file mode 100644 index 00000000..ab3ce58c --- /dev/null +++ b/src/routes/science.ts @@ -0,0 +1,10 @@ +import { Router } from "express"; + +const router = Router(); + +router.post("/", (req, res) => { + // TODO: + res.sendStatus(204); +}); + +export default router;