mirror of
https://github.com/Retropex/mempool-startos.git
synced 2025-05-16 05:00:45 +02:00
8 lines
306 B
TypeScript
8 lines
306 B
TypeScript
import { types as T, checkWebUrl, catchError } from "../deps.ts";
|
|
|
|
export const health: T.ExpectedExports.health = {
|
|
// deno-lint-ignore require-await
|
|
async "web-ui"(effects, duration) {
|
|
return checkWebUrl("http://mempooldotguide.embassy:8080")(effects, duration).catch(catchError(effects))
|
|
},
|
|
}; |