@hashgraph/hedera-local
Version:
Developer tooling for running Local Hedera Network (Consensus + Mirror Nodes).
14 lines (11 loc) • 397 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
/**
* Represents a service.
*
* @remarks
* This interface defines the contract for a service in the application.
* Services are responsible for performing specific tasks or providing specific functionality.
* Implementations of this interface should provide the necessary logic to fulfill the service's purpose.
*/
export interface IService {
}