UNPKG

@hashgraph/solo

Version:

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

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