import { fetchJson } from '@/lib/utils/server'; export async function GET() { const res = await fetch('https://localhost:4000/api/ping', { method: 'GET', }).then(r => r.json()); return new Response(res.message); }