1
0
Files
DiAL/src/server/routes/health.ts

8 lines
239 B
TypeScript

import type { RuntimeMode } from "../../shared/api";
import { createHealthResponse, jsonResponse } from "../helpers";
export function handleHealth(mode: RuntimeMode): Response {
return jsonResponse(createHealthResponse(), { mode });
}