ChatGPT-Next-Web/app/api/auth/[...nextauth]/route.ts
2023-11-07 17:44:01 +01:00

7 lines
161 B
TypeScript

import { authOptions } from "@/app/auth";
import NextAuth from "next-auth";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };