Files
next-fiber/app/api/auth/[...nextauth]/route.ts
Beyhan Oğur b2825e1698 first commit
2026-04-26 22:14:08 +03:00

7 lines
169 B
TypeScript

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