mirror of
https://github.com/vercel/next-learn.git
synced 2026-07-02 17:08:42 +00:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { authOptions } from '@/auth';
|
|
import NextAuth from 'next-auth';
|
|
|
|
const handler = NextAuth(authOptions);
|
|
|
|
export { handler as GET, handler as POST, authOptions };
|