@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
20 lines • 564 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
export class KindKubeConfig {
apiVersion;
clusters;
contexts;
currenctContext;
kind;
preferences;
users;
constructor(apiVersion, clusters, contexts, currenctContext, kind, preferences, users) {
this.apiVersion = apiVersion;
this.clusters = clusters;
this.contexts = contexts;
this.currenctContext = currenctContext;
this.kind = kind;
this.preferences = preferences;
this.users = users;
}
}
//# sourceMappingURL=kind-kubeconfig.js.map