@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines • 443 B
JavaScript
// SPDX-License-Identifier: Apache-2.0
export class ChartMetadata {
version;
appVersion;
/**
* Creates a new ChartMetadata instance.
* @param version The version of the chart
* @param appVersion The version of the application contained in the chart
*/
constructor(version, appVersion) {
this.version = version;
this.appVersion = appVersion;
}
}
//# sourceMappingURL=chart-metadata.js.map