import { NextResponse } from "next/server"; import { listTaskEvents } from "@/lib/tasks"; export async function GET() { return NextResponse.json(await listTaskEvents(undefined, 100)); }