@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
17 lines • 411 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
/**
* A request to export the logs of a Kind cluster.
*/
export class ExportLogsRequest {
options;
constructor(options) {
this.options = options;
}
apply(builder) {
builder.subcommands('export', 'logs');
if (this.options) {
this.options.apply(builder);
}
}
}
//# sourceMappingURL=export-logs-request.js.map