route.ts 206 B

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