(input: { hostname: string; scopeId: string; port: number })
| 442 | }; |
| 443 | |
| 444 | const 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 | |
| 452 | const resolveDaemonTarget = (baseUrl: string) => |
| 453 | Effect.gen(function* () { |
no test coverage detected