UNPKG

@hashgraph/solo

Version:

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

17 lines 446 B
// SPDX-License-Identifier: Apache-2.0 /** * A request to export the kubectl configuration of a Kind cluster. */ export class ExportKubeConfigRequest { options; constructor(options) { this.options = options; } apply(builder) { builder.subcommands('export', 'kubeconfig'); if (this.options) { this.options.apply(builder); } } } //# sourceMappingURL=export-kubeconfig-request.js.map