File size: 189 Bytes
1187856 | 1 2 3 4 5 6 7 | import { NextResponse } from "next/server";
import { getDatasetsWithVersions } from "@/lib/data/datasets";
export function GET() {
return NextResponse.json(getDatasetsWithVersions());
}
|
1187856 | 1 2 3 4 5 6 7 | import { NextResponse } from "next/server";
import { getDatasetsWithVersions } from "@/lib/data/datasets";
export function GET() {
return NextResponse.json(getDatasetsWithVersions());
}
|