UNPKG

@hashgraph/solo

Version:

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

16 lines 410 B
// SPDX-License-Identifier: Apache-2.0 export class K8ClientObjectMeta { namespace; name; labels; annotations; uid; constructor(namespace, name, labels, annotations, uid) { this.namespace = namespace; this.name = name; this.labels = labels; this.annotations = annotations; this.uid = uid; } } //# sourceMappingURL=k8-client-object-meta.js.map