diff options
author | Rafael Oliveira <52896767+notsapinho@users.noreply.github.com> | 2021-04-07 07:22:09 -0300 |
---|---|---|
committer | Rafael Oliveira <52896767+notsapinho@users.noreply.github.com> | 2021-04-07 07:22:09 -0300 |
commit | cb499f0e98f40a1cbda0252280128c432788f63a (patch) | |
tree | 1a517d99b733ce5b45be53499d36dafb485139a0 /src | |
parent | :bug: fix message route (diff) | |
download | server-cb499f0e98f40a1cbda0252280128c432788f63a.tar.xz |
🖥️ /science route
Diffstat (limited to 'src')
-rw-r--r-- | src/routes/science.ts | 10 |
1 files changed, 10 insertions, 0 deletions
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; |