6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
import NextAuth from "next-auth/next";
|
|
import { authOptions } from "./options";
|
|
|
|
const handler = NextAuth(authOptions);
|
|
|
|
export { handler as GET, handler as POST };
|