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

9 lines
319 B
TypeScript
Raw Normal View History

import { NextResponse } from "next/server";
import { listDevices } from "@/lib/db/queries/devices";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export const GET = withRouteLogging("devices.list", async () => {
const rows = await listDevices();
return NextResponse.json({ devices: rows });
});