Files
checkflow/src/app/api/auth/[...nextauth]/route.ts
T
2026-08-21 15:22:17 +09:00

5 lines
159 B
TypeScript

import NextAuth from "next-auth";
import { authOptions } from "@/lib/auth";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };