chore: create reservation-platform package

This commit is contained in:
TOHAACK
2024-04-19 08:30:04 +02:00
parent 02be25cbf7
commit 0451ccacd6
20 changed files with 4277 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import NextAuth from "next-auth";
import { authOptions } from "@/server/auth";
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };