route.ts 221 B

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