UNPKG

@hashgraph/solo

Version:

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

13 lines 353 B
// SPDX-License-Identifier: Apache-2.0 import { Lifecycle } from 'tsyringe-neo'; export class SingletonContainer { token; useClass; lifecycle; constructor(token, useClass) { this.token = token; this.useClass = useClass; this.lifecycle = Lifecycle.Singleton; } } //# sourceMappingURL=singleton-container.js.map