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

9 lines
168 B
TypeScript
Raw Normal View History

import { handlers, auth, signIn, signOut } from '@/auth';
export const { GET, POST } = handlers;
export { auth, signIn, signOut };
export const runtime = "nodejs";