1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 03:33:54 +00:00

static ContainerService for edge case dependencies

This commit is contained in:
Kyle Spearrin
2018-01-04 14:16:40 -05:00
parent 0dd711471b
commit 0fbbc4a0b9
4 changed files with 21 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
import { CryptoService } from './abstractions/crypto.service';
export default class ContainerService {
static cryptoService: CryptoService = null;
}