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

9 lines
222 B
TypeScript
Raw Normal View History

import NextAuth from 'next-auth';
import { authConfig } from '@/auth.config';
export const { handlers, auth, signIn, signOut } = NextAuth(authConfig);
export const GET = handlers.GET;
export const POST = handlers.POST;