@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines • 461 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* A request to create a new Kind cluster.
*/
export class ClusterCreateRequest {
options;
constructor(options) {
this.options = options;
if (!options) {
throw new Error('options must not be null');
}
}
apply(builder) {
builder.subcommands('create', 'cluster');
this.options.apply(builder);
}
}
//# sourceMappingURL=cluster-create-request.js.map