tenantpilot/app/api/auth/[...nextauth]/route.ts
2025-12-05 22:06:22 +01:00

6 lines
171 B
TypeScript

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