Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
export default async function handler(req: Request) {
if (req.method !== 'POST') {
return new Response('Method not allowed', { status: 405 });
}
console.log(await req.json());
return Response.json({ ok: true });
}
stevekrouse-discordeventreceiver.web.val.run
April 13, 2024