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

Function cleanupPointer

apps/cli/src/main.ts:430–436  ·  view source on GitHub ↗
(input: { hostname: string; scopeId: string; port: number })

Source from the content-addressed store, hash-verified

428};
429
430const cleanupPointer = (input: { hostname: string; scopeId: string; port: number }) =>
431 Effect.gen(function* () {
432 yield* removeDaemonPointer({ hostname: input.hostname, scopeId: input.scopeId }).pipe(
433 Effect.ignore,
434 );
435 yield* removeDaemonRecord({ hostname: input.hostname, port: input.port }).pipe(Effect.ignore);
436 });
437
438const resolveDaemonTarget = (baseUrl: string) =>
439 Effect.gen(function* () {

Callers 2

resolveDaemonTargetFunction · 0.85
runDaemonSessionFunction · 0.85

Calls 2

removeDaemonPointerFunction · 0.90
removeDaemonRecordFunction · 0.90

Tested by

no test coverage detected