UNPKG

@hashgraph/solo

Version:

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

14 lines 320 B
// SPDX-License-Identifier: Apache-2.0 export class CacheTarget { type; name; version; source; constructor(type, name, version, source) { this.type = type; this.name = name; this.version = version; this.source = source; } } //# sourceMappingURL=cache-target.js.map