This commit is contained in:
mdares
2026-01-06 15:47:19 +00:00
parent ea92b32618
commit 05a30b2a21
4 changed files with 97 additions and 8 deletions

7
app/api/health/route.ts Normal file
View File

@@ -0,0 +1,7 @@
import { NextResponse } from "next/server";
import { logLine } from "@/lib/logger";
export async function GET() {
logLine("health.hit", { ok: true });
return NextResponse.json({ ok: true });
}