mirror of
https://github.com/Retropex/DeepSea-startos.git
synced 2025-05-12 21:50:42 +02:00
8 lines
282 B
TypeScript
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))
|
|
},
|
|
};
|