DeepSea-startos/scripts/procedures/healthChecks.ts
2025-04-25 12:43:01 +02:00

8 lines
274 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://hello-world.embassy:80")(effects, duration).catch(healthUtil.catchError(effects))
},
};