Files
CubeAdmin/app/api/health/route.ts
2026-03-08 15:49:34 +01:00

10 lines
236 B
TypeScript

import { NextResponse } from "next/server";
/** Health check endpoint used by Docker and monitoring. */
export async function GET() {
return NextResponse.json(
{ status: "ok", timestamp: Date.now() },
{ status: 200 },
);
}