aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/find.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/controllers/find.js')
-rw-r--r--src/background/controllers/find.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/background/controllers/find.js b/src/background/controllers/find.js
deleted file mode 100644
index 7096014..0000000
--- a/src/background/controllers/find.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import FindInteractor from '../usecases/find';
-
-export default class FindController {
- constructor() {
- this.findInteractor = new FindInteractor();
- }
-
- getKeyword() {
- return this.findInteractor.getKeyword();
- }
-
- setKeyword(keyword) {
- return this.findInteractor.setKeyword(keyword);
- }
-}