import { prisma } from "@/lib/prisma" import { NextResponse } from "next/server" export async function GET() { const machines = await prisma.machine.findMany({ where: { status: "active" } }) return NextResponse.json(machines) }