Midday / packages /cache /src /health.ts
Jules
Final deployment with all fixes and verified content
c09f67c
import { RedisCache } from "./redis-client";
export async function checkHealth(): Promise<void> {
const healthChecker = new RedisCache("health", 0);
await healthChecker.healthCheck();
}