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

Function cleanupPointer

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

Source from the content-addressed store, hash-verified

442};
443
444const cleanupPointer = (input: { hostname: string; scopeId: string; port: number }) =>
445 Effect.gen(function* () {
446 yield* removeDaemonPointer({ hostname: input.hostname, scopeId: input.scopeId }).pipe(
447 Effect.ignore,
448 );
449 yield* removeDaemonRecord({ hostname: input.hostname, port: input.port }).pipe(Effect.ignore);
450 });
451
452const resolveDaemonTarget = (baseUrl: string) =>
453 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