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

Function integrationHealthCheckGet

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

Source from the content-addressed store, hash-verified

2358 // ------------------------------------------------------------------
2359
2360 const integrationHealthCheckGet = (
2361 slug: IntegrationSlug,
2362 ): Effect.Effect<HealthCheckSpec | null, StorageFailure> =>
2363 findIntegrationRow(slug).pipe(
2364 Effect.map((row) => (row ? describeHealthCheckForRow(row) : null)),
2365 );
2366
2367 const integrationHealthCheckCandidates = (
2368 slug: IntegrationSlug,

Callers

nothing calls this directly

Calls 2

findIntegrationRowFunction · 0.85

Tested by

no test coverage detected