// Route handler catch-all qui expose tous les endpoints Better Auth
// sous /api/auth/* (signin, signout, callback, etc.).

import { toNextJsHandler } from "better-auth/next-js";
import { auth } from "@/lib/auth";

export const { GET, POST } = toNextJsHandler(auth);
