forked from Transparency/kgroad-frontend2
7 lines
175 B
TypeScript
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 };
|