8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
import { listFleetAgents } from "@/lib/agents";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json(await listFleetAgents());
|
|
}
|