From c45268d895a04de4d7d90dc2f0c79d102f2a2a23 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Wed, 17 Jul 2024 20:39:27 -0500 Subject: [PATCH] test --- apps/web/app/api/chat/history/route.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 apps/web/app/api/chat/history/route.ts 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!"); +}