Build a client purely from the environment (`CMDOP_*`).
()
| 34 | |
| 35 | #machines?: MachinesResource; |
| 36 | get machines(): MachinesResource { |
| 37 | return (this.#machines ??= new MachinesResource(this)); |
| 38 | } |
| 39 | |
| 40 | async close(): Promise<void> { |
| 41 | await this._t.close(); |
nothing calls this directly
no outgoing calls
no test coverage detected