Files
sexy/app/api/devices/route.ts
T

8 lines
216 B
TypeScript
Raw Normal View History

import { NextResponse } from "next/server";
import { listDevices } from "@/lib/db/queries/devices";
export async function GET() {
const rows = await listDevices();
return NextResponse.json({ devices: rows });
}