supermemory/apps/web/app/(dash)/chat/route.ts
2024-07-21 10:43:00 -05:00

5 lines
104 B
TypeScript

import { redirect } from "next/navigation";
export async function GET() {
return redirect("/home");
}