9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
|
|
|
||
|
|
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;
|