DeepSea-startos/scripts/procedures/healthChecks.ts
2025-04-25 13:25:48 +02:00

8 lines
282 B
TypeScript

import { types as T, healthUtil } from "../deps.ts";
export const health: T.ExpectedExports.health = {
async "web-ui"(effects, duration) {
return healthUtil.checkWebUrl("http://deepsea-dashboard.embassy:5000")(effects, duration).catch(healthUtil.catchError(effects))
},
};