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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

2821 // ------------------------------------------------------------------
2822
2823 const integrationHealthCheckGet = (
2824 slug: IntegrationSlug,
2825 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
2826 findIntegrationRow(slug).pipe(
2827 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
2828 );
2829
2830 const integrationHealthCheckCandidates = (
2831 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected