aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/VersionController.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/controllers/VersionController.js')
-rw-r--r--src/background/controllers/VersionController.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/background/controllers/VersionController.js b/src/background/controllers/VersionController.js
new file mode 100644
index 0000000..c596f9b
--- /dev/null
+++ b/src/background/controllers/VersionController.js
@@ -0,0 +1,11 @@
+import VersionUseCase from '../usecases/VersionUseCase';
+
+export default class VersionController {
+ constructor() {
+ this.versionUseCase = new VersionUseCase();
+ }
+
+ notify() {
+ this.versionUseCase.notify();
+ }
+}