taxonomy/app/api/auth/[...nextauth]/_route.ts

8 lines
158 B
TypeScript
Raw Permalink Normal View History

2023-04-24 11:10:49 +00:00
import NextAuth from "next-auth"
import { authOptions } from "@/lib/auth"
const handler = NextAuth(authOptions)
export { handler as GET, handler as POST }