link-stack/apps/link/app/api/auth/[...nextauth]/route.ts
Darren Clarke b09cc82544 WIP 5
2024-03-20 17:51:21 +01:00

6 lines
174 B
TypeScript

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