chore: debug

This commit is contained in:
Cory Dransfeldt 2024-04-02 11:21:15 -07:00
parent e21b37c306
commit 511b67a1c8
No known key found for this signature in database

14
api/debug.js Normal file
View file

@ -0,0 +1,14 @@
export default async (context, request) => {
console.log(context)
console.log(request)
return new Response(JSON.stringify({
status: 'success',
}),
{ headers: { "Content-Type": "application/json" } }
)
}
export const config = {
path: '/api/debug',
}