This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/background/controllers/FindController.js
2019-02-24 21:58:12 +09:00

15 lines
298 B
JavaScript

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);
}
}