mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
5 lines
104 B
TypeScript
5 lines
104 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export async function GET() {
|
|
return redirect("/home");
|
|
}
|