chore: debug

This commit is contained in:
Cory Dransfeldt 2024-03-28 14:57:56 -07:00
parent 2163e4087e
commit 23f3bc47e7
No known key found for this signature in database

15
api/scrobble.js Normal file
View file

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