link-stack/apps/leafcutter/app/api/auth/[...nextauth]/route.ts

7 lines
166 B
TypeScript
Raw Normal View History

2023-02-13 13:46:56 +00:00
import NextAuth from "next-auth";
2023-06-28 09:09:45 +00:00
import { authOptions } from "@/app/_lib/auth";
2023-02-13 13:46:56 +00:00
2023-06-28 09:09:45 +00:00
const handler = NextAuth(authOptions);
2023-06-26 10:07:12 +00:00
export { handler as GET, handler as POST };