File size: 195 Bytes
1187856 | 1 2 3 4 5 6 7 | import { NextResponse } from "next/server";
import { getImportantDates } from "@/lib/data/important-dates";
export function GET() {
return NextResponse.json({ items: getImportantDates() });
}
|
1187856 | 1 2 3 4 5 6 7 | import { NextResponse } from "next/server";
import { getImportantDates } from "@/lib/data/important-dates";
export function GET() {
return NextResponse.json({ items: getImportantDates() });
}
|