ChatGPT-Next-Web/app/api/auth/[...nextauth]/route.ts
2023-12-16 23:05:14 +08:00

7 lines
161 B
TypeScript

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