@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
23 lines • 578 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* The response from the kind cluster commands.
*/
export class KindCluster {
name;
/**
* Constructs a new Repository.
*
* @param name the name of the repository.
* @throws Error if any of the arguments are null or blank.
*/
constructor(name) {
this.name = name;
if (!name) {
throw new Error('name must not be null');
}
if (!name.trim()) {
throw new Error('name must not be blank');
}
}
}
//# sourceMappingURL=kind-cluster.js.map