Files
edubox/server/app/api/download/route.ts
T
2026-06-06 19:55:41 +00:00

10 lines
222 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({
windows: "/agent/edubox-agent.exe",
linux: "/agent/edubox-agent",
mac: "/agent/edubox-agent-mac",
});
}