import { ContainerModule } from 'inversify'; import { PlaygroundContextKeyService } from './playground-context-key-service'; export default new ContainerModule(bind => { bind(PlaygroundContextKeyService).toSelf().inSingletonScope(); });