From 1f68adda907c56b37dea35102afb490df784bc27 Mon Sep 17 00:00:00 2001 From: Charles GTE Date: Sun, 17 May 2026 09:33:53 +0200 Subject: [PATCH] feat: add GET /api/health liveness endpoint --- app/api/health/route.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/api/health/route.ts diff --git a/app/api/health/route.ts b/app/api/health/route.ts new file mode 100644 index 00000000..c00961a1 --- /dev/null +++ b/app/api/health/route.ts @@ -0,0 +1,5 @@ +import { NextResponse } from "next/server"; + +export async function GET() { + return NextResponse.json({ success: true }); +}