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