diff options
| author | Dhravya Shah <[email protected]> | 2024-07-17 20:39:27 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-17 20:39:27 -0500 |
| commit | c45268d895a04de4d7d90dc2f0c79d102f2a2a23 (patch) | |
| tree | 6acfcf3c918c62796bcc7d2c7403ddd2c919c050 /apps | |
| parent | stuff (diff) | |
| download | supermemory-c45268d895a04de4d7d90dc2f0c79d102f2a2a23.tar.xz supermemory-c45268d895a04de4d7d90dc2f0c79d102f2a2a23.zip | |
test
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/app/api/chat/history/route.ts | 7 |
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!"); +} |