1
2
3
4
export let postWebhook1 = (req, res) => {
res.set("Content-Type", "text/html");
res.send(`<h1>Hello</h1>`);
};