1
2
3
export let postWebhook = (req, res) => {
res.json({ data: `Hello + ${req.body.name}!` });
};