@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (11 loc) • 336 B
text/typescript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import {type ObjectMeta} from '../object_meta.js';
import {type ServiceSpec} from './service_spec.js';
import {type ServiceStatus} from './service_status.js';
export interface Service {
readonly metadata?: ObjectMeta;
readonly spec?: ServiceSpec;
readonly status?: ServiceStatus;
}