UNPKG

@hashgraph/solo

Version:

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

14 lines 368 B
// SPDX-License-Identifier: Apache-2.0 export class BuildNodeImagesRequest { options; constructor(options) { this.options = options; } apply(builder) { builder.subcommands('build', 'node-image'); if (this.options) { this.options.apply(builder); } } } //# sourceMappingURL=build-node-images-request.js.map