link-stack/apps/metamigo-frontend/app/api/auth/[...nextauth]/route.ts
Darren Clarke b8c6e893ff WIP 4
2024-03-17 12:58:25 +01:00

6 lines
176 B
TypeScript

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