@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
17 lines • 411 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* A request to retrieve kubeconfig data.
*/
export class GetKubeConfigRequest {
options;
constructor(options) {
this.options = options;
}
apply(builder) {
builder.subcommands('get', 'kubeconfig');
if (this.options) {
this.options.apply(builder);
}
}
}
//# sourceMappingURL=get-kubeconfig-request.js.map