Files
neta/app/api/health/live/route.ts
T

9 lines
150 B
TypeScript

export const runtime = "nodejs";
export function GET() {
return Response.json({
status: "ok",
timestamp: new Date().toISOString(),
});
}