15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
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);
|
|
}
|
|
}
|