kgroad-frontend2/src/app/api/auth/[...nextauth]/route.ts
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

7 lines
175 B
TypeScript

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