diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-22 09:30:01 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-22 09:30:01 +0900 |
commit | 87ed1f43a96a67c4901c267aee96784de1d45889 (patch) | |
tree | 0ef3182973cad8b54a562cd9e1a34763ea5320c0 /src/background/controllers | |
parent | a1e5e97200bd96ba918744dfa2758f977ca823c6 (diff) |
Version as Clean Architecture
Diffstat (limited to 'src/background/controllers')
-rw-r--r-- | src/background/controllers/version.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/background/controllers/version.js b/src/background/controllers/version.js new file mode 100644 index 0000000..04d99fe --- /dev/null +++ b/src/background/controllers/version.js @@ -0,0 +1,11 @@ +import VersionInteractor from '../usecases/version'; + +export default class VersionController { + constructor() { + this.versionInteractor = new VersionInteractor(); + } + + notifyIfUpdated() { + this.versionInteractor.notifyIfUpdated(); + } +} |