Files
var-monorepo/apps/hub/app/api/auth/[...nextauth]/route.ts
2025-01-18 23:19:16 +01:00

7 lines
149 B
TypeScript

import NextAuth from 'next-auth';
import { options } from './auth';
const handler = NextAuth(options);
export { handler as GET, handler as POST };