Files
cronmaster/app/api/health/route.ts
2026-05-12 14:15:59 +01:00

4 lines
112 B
TypeScript

import { NextResponse } from "next/server";
export const GET = () => NextResponse.json({ status: "healthy" });