7 lines
149 B
TypeScript
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 };
|