TriWorldBench's picture
Update TriWorldBench web from desktop manager
1187856 verified
Raw
History Blame Contribute Delete
189 Bytes
import { NextResponse } from "next/server";
import { getDatasetsWithVersions } from "@/lib/data/datasets";
export function GET() {
return NextResponse.json(getDatasetsWithVersions());
}