Version as Clean Architecture

This commit is contained in:
Shin'ya Ueoka 2018-07-22 09:30:01 +09:00
parent a1e5e97200
commit 87ed1f43a9
11 changed files with 104 additions and 114 deletions

View file

@ -0,0 +1,11 @@
import VersionInteractor from '../usecases/version';
export default class VersionController {
constructor() {
this.versionInteractor = new VersionInteractor();
}
notifyIfUpdated() {
this.versionInteractor.notifyIfUpdated();
}
}