blob: 1bcac4c315d143ee370866a4c6994b61bb9837a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import VersionUseCase from '../usecases/VersionUseCase';
export default class VersionController {
constructor() {
this.versionUseCase = new VersionUseCase();
}
notifyIfUpdated() {
this.versionUseCase.notifyIfUpdated();
}
}
|