TriWorldBench's picture
Update TriWorldBench web from desktop manager
1187856 verified
Raw
History Blame Contribute Delete
195 Bytes
import { NextResponse } from "next/server";
import { getImportantDates } from "@/lib/data/important-dates";
export function GET() {
return NextResponse.json({ items: getImportantDates() });
}