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/VersionController.ts
2019-05-02 22:07:53 +09:00

13 lines
279 B
TypeScript

import VersionUseCase from '../usecases/VersionUseCase';
export default class VersionController {
private versionUseCase: VersionUseCase;
constructor() {
this.versionUseCase = new VersionUseCase();
}
notify(): void {
return this.versionUseCase.notify();
}
}