Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import "jsr:@supabase/functions-js/edge-runtime.d.ts";
- Deno.serve(async (req: Request) => {
- const payload = await req.json();
- console.log(payload);
- return new Response("OK", { status: 200 });
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement