Initial commit

This commit is contained in:
Developer
2026-02-06 21:44:04 -06:00
commit f85e93c7a6
151 changed files with 22916 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { getAuth } from "@/lib/auth";
import { NextRequest } from "next/server";
export const runtime = "nodejs";
async function handler(req: NextRequest) {
const auth = await getAuth();
return auth.handler(req);
}
export async function POST(req: NextRequest) {
return handler(req);
}
export async function GET(req: NextRequest) {
return handler(req);
}