Files
estimation-flow/src/app/api/auth/[...nextauth]/route.ts
T

8 lines
157 B
TypeScript

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