Files
football-next/app/api/auth/[...nextauth]/route.ts
a.alinaghipour aa9ed69dd2 first commit
2026-04-05 15:53:20 +03:30

6 lines
160 B
TypeScript

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