aboutsummaryrefslogtreecommitdiff
path: root/apps/web
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-07-17 20:39:27 -0500
committerDhravya Shah <[email protected]>2024-07-17 20:39:27 -0500
commitc45268d895a04de4d7d90dc2f0c79d102f2a2a23 (patch)
tree6acfcf3c918c62796bcc7d2c7403ddd2c919c050 /apps/web
parentstuff (diff)
downloadsupermemory-c45268d895a04de4d7d90dc2f0c79d102f2a2a23.tar.xz
supermemory-c45268d895a04de4d7d90dc2f0c79d102f2a2a23.zip
test
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/app/api/chat/history/route.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web/app/api/chat/history/route.ts b/apps/web/app/api/chat/history/route.ts
new file mode 100644
index 00000000..6c0cf41b
--- /dev/null
+++ b/apps/web/app/api/chat/history/route.ts
@@ -0,0 +1,7 @@
+import { NextRequest } from "next/server";
+
+export const runtime = "edge";
+
+export async function GET(req: NextRequest) {
+ return new Response("Hello, World!");
+}