UNPKG

@hashgraph/solo

Version:

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

14 lines (11 loc) 450 B
// SPDX-License-Identifier: Apache-2.0 import {type HelmExecutionBuilder} from '../../execution/helm-execution-builder.js'; import {type HelmRequest} from '../helm-request.js'; /** * A request to get the version of the Helm CLI. */ export class VersionRequest implements HelmRequest { public apply(builder: HelmExecutionBuilder): void { builder.subcommands('version').argument('template', String.raw`{\"version\":\"{{.Version}}\"}`); } }