diff options
Diffstat (limited to 'apps/web/app/api')
| -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!"); +} |