Version as Clean Architecture
This commit is contained in:
parent
a1e5e97200
commit
87ed1f43a9
11 changed files with 104 additions and 114 deletions
11
src/background/controllers/version.js
Normal file
11
src/background/controllers/version.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import VersionInteractor from '../usecases/version';
|
||||
|
||||
export default class VersionController {
|
||||
constructor() {
|
||||
this.versionInteractor = new VersionInteractor();
|
||||
}
|
||||
|
||||
notifyIfUpdated() {
|
||||
this.versionInteractor.notifyIfUpdated();
|
||||
}
|
||||
}
|
Reference in a new issue