import { NextResponse } from 'next/server'; import { getSolPrice } from '@/lib/helius/solPrice'; export async function GET() { const price = await getSolPrice(); return NextResponse.json({ price }); }