Initial commit

This commit is contained in:
Ben Grant 2021-02-26 13:19:13 +11:00
commit 15d4e2f126
37 changed files with 12580 additions and 0 deletions

View file

@ -0,0 +1,10 @@
module.exports = (req, res) => {
const { event } = req.body;
if (event) {
console.log(event);
res.sendStatus(201);
} else {
res.sendStatus(400);
}
};