UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

17 lines 412 B
// SPDX-License-Identifier: Apache-2.0 /** * A request to list all Kind clusters. */ export class LoadDockerImageRequest { options; constructor(options) { this.options = options; } apply(builder) { builder.subcommands('load', 'docker-image'); if (this.options) { this.options.apply(builder); } } } //# sourceMappingURL=docker-image-request.js.map