Files
2026-06-20 13:57:37 +00:00

13 lines
318 B
TypeScript

import { NextResponse } from "next/server";
const AGENT_VERSION = "0.3.0";
export async function GET() {
return NextResponse.json({
version: AGENT_VERSION,
windows: `/edubox-agent-v${AGENT_VERSION}.exe`,
linux: `/edubox-agent-v${AGENT_VERSION}`,
mac: `/edubox-agent-v${AGENT_VERSION}-mac`,
});
}