UNPKG

@hashgraph/solo

Version:

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

12 lines 304 B
// SPDX-License-Identifier: Apache-2.0 export class CacheCatalog { version; soloVersion; items; constructor(version, soloVersion, items) { this.version = version; this.soloVersion = soloVersion; this.items = items; } } //# sourceMappingURL=cache-catalog.js.map