1
2
3
4
5
6
export const doorbellBotHandler = (req, res) => {
res.set("Content-Type", "text/xml");
res.send(
`<?xml version="1.0" encoding="UTF-8"?><Response><Say voice="alice">Your wish has been granted. Welcome to Fractal</Say><Play digits="w9" /></Response>`
);
};