MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / integrationHealthCheckGet

Function integrationHealthCheckGet

packages/core/sdk/src/executor.ts:2455–2460  ·  view source on GitHub ↗
(
      slug: IntegrationSlug,
    )

Source from the content-addressed store, hash-verified

2453 // ------------------------------------------------------------------
2454
2455 const integrationHealthCheckGet = (
2456 slug: IntegrationSlug,
2457 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
2458 findIntegrationRow(slug).pipe(
2459 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
2460 );
2461
2462 const integrationHealthCheckCandidates = (
2463 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected