add services

This commit is contained in:
Gaëtan
2022-11-14 15:27:41 +01:00
parent 6bb99ace5c
commit 9d6638c35e
2 changed files with 1 additions and 1 deletions
@@ -9,7 +9,6 @@ export class ConfigurationService {
private constructor(){
this.observers = new Map<string, BehaviorSubject<any>>();
}
private emitChange(key: string){
if(this.observers.has(key)){
const val = this.get(key);
+1
View File
@@ -22,6 +22,7 @@ export class I18nService {
if(!I18nService.instance){ I18nService.instance = new I18nService(); }
return I18nService.instance;
}
private constructor(){
this.configService = ConfigurationService.getInstance();
this.cache = new Map<string, string>();