diff --git a/api/scrobble.js b/api/scrobble.js new file mode 100644 index 00000000..4f2c9646 --- /dev/null +++ b/api/scrobble.js @@ -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", +} \ No newline at end of file