UNPKG

@hashgraph/solo

Version:

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

15 lines (11 loc) 275 B
// SPDX-License-Identifier: Apache-2.0 import {Lifecycle} from 'tsyringe-neo'; export class SingletonContainer { public lifecycle: Lifecycle; public constructor( public token: symbol, public useClass: any, ) { this.lifecycle = Lifecycle.Singleton; } }