Files
gb-site/frontend/src/app/health/ping/route.ts
Ivan Liashkevich 0bf5a8a546
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Add frontend health ping endpoint and project docs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-09 16:23:58 +02:00

6 lines
125 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ status: "pong" });
}