@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
17 lines • 413 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* A request to list Kind nodes for the specified context.
*/
export class GetNodesRequest {
options;
constructor(options) {
this.options = options;
}
apply(builder) {
builder.subcommands('get', 'nodes');
if (this.options) {
this.options.apply(builder);
}
}
}
//# sourceMappingURL=get-nodes-request.js.map