aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers/mark.js
blob: 8d0cefd82222a0fa3ec89bd3758cc7cae5e68203 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import MarkInteractor from '../usecases/mark';

export default class MarkController {
  constructor() {
    this.markInteractor = new MarkInteractor();
  }

  setGlobal(key, x, y) {
    this.markInteractor.setGlobal(key, x, y);
  }

  jumpGlobal(key) {
    this.markInteractor.jumpGlobal(key);
  }
}