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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

3189 // ------------------------------------------------------------------
3190
3191 const integrationHealthCheckGet = (
3192 slug: IntegrationSlug,
3193 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
3194 findIntegrationRow(slug).pipe(
3195 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
3196 );
3197
3198 const integrationHealthCheckCandidates = (
3199 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected