UNPKG

@hashgraph/solo

Version:

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

10 lines 303 B
// SPDX-License-Identifier: Apache-2.0 export class Metrics { cpuInMillicores; memoryInMebibytes; constructor(cpuInMillicores, memoryInMebibytes) { this.cpuInMillicores = cpuInMillicores; this.memoryInMebibytes = memoryInMebibytes; } } //# sourceMappingURL=metrics.js.map