Lumbridge Bench
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { getRuns } from "@/lib/results";
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
/** Liveness probe used by the deploy verify step. */
|
||||
export async function GET() {
|
||||
const runs = getRuns();
|
||||
return Response.json({
|
||||
ok: true,
|
||||
runs: runs.length,
|
||||
latest: runs[0]?.timestamp ?? null,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user