feat: bind logger service first

This commit is contained in:
Xymorot 2020-10-31 15:24:50 +01:00
parent 34ada21cc7
commit 992fcdda84
1 changed files with 2 additions and 2 deletions

View File

@ -22,6 +22,8 @@ export const container = {
},
};
container.bind('logger').to(Logger);
container.bind('store').to(Store);
container.bind('web-crawler').to(WebCrawler);
@ -31,5 +33,3 @@ container.bind('nhentai-api').to(NhentaiApi);
container.bind('app-window-main').to(MainAppWindow);
container.bind('session').to(Session);
container.bind('logger').to(Logger);