10 lines
222 B
TypeScript
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",
|
|
});
|
|
}
|