Deno.serve(async () => {
const name = "World"
const data = {
text: `Hello ${name} -|- Welcome to Supabase Functions!`
}
console.log("hello-world function invoked:", data)
return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json' } })
})
Deno.serve(async () => {
const name = "World"
const data = {
text: `Hello ${name} -|- Welcome to Supabase Functions!`
}
console.log("hello-world function invoked:", data)
return new Response(JSON.stringify(data), { headers: { 'Content-Type': 'application/json' } })
})