Capitalize background scripts
This commit is contained in:
parent
21788740c1
commit
a26d8a8a1b
50 changed files with 247 additions and 245 deletions
11
src/background/controllers/VersionController.js
Normal file
11
src/background/controllers/VersionController.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import VersionUseCase from '../usecases/VersionUseCase';
|
||||
|
||||
export default class VersionController {
|
||||
constructor() {
|
||||
this.versionUseCase = new VersionUseCase();
|
||||
}
|
||||
|
||||
notifyIfUpdated() {
|
||||
this.versionUseCase.notifyIfUpdated();
|
||||
}
|
||||
}
|
Reference in a new issue