(input: { hostname: string; scopeId: string; port: number })
| 428 | }; |
| 429 | |
| 430 | const 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 | |
| 438 | const resolveDaemonTarget = (baseUrl: string) => |
| 439 | Effect.gen(function* () { |
no test coverage detected