feat: add GET /api/health liveness endpoint

This commit is contained in:
Charles GTE
2026-05-17 09:33:53 +02:00
parent ffba2c56a3
commit 1f68adda90
+5
View File
@@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ success: true });
}