From 23f3bc47e70afb0fba42c5a903e003fb7aca88e9 Mon Sep 17 00:00:00 2001
From: Cory Dransfeldt <coryd@hey.com>
Date: Thu, 28 Mar 2024 14:57:56 -0700
Subject: [PATCH] chore: debug

---
 api/scrobble.js | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 api/scrobble.js

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