import { NextResponse } from 'next/server'; import { getInstruments } from '@/lib/db'; export function GET() { return NextResponse.json(getInstruments()); }