import { NextResponse } from "next/server"; import { getRecordingLibraryStats } from "@/lib/db/queries/stats"; export async function GET() { const stats = await getRecordingLibraryStats(); return NextResponse.json(stats); }