aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/FindController.js
blob: caeff988b4e76a02124df137f94ac756b726c981 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import FindUseCase from '../usecases/FindUseCase';

export default class FindController {
  constructor() {
    this.findUseCase = new FindUseCase();
  }

  getKeyword() {
    return this.findUseCase.getKeyword();
  }

  setKeyword(keyword) {
    return this.findUseCase.setKeyword(keyword);
  }
}