summaryrefslogtreecommitdiff
path: root/app/services/commands/application-command.js
blob: ceb38f00f7892cadea3888c5b4b7cacb7943c7c4 (plain)
1
2
3
4
5
6
7
8
9
export default class ApplicationCommand {
  notify(event) {
    this.run(event);
  }

  run(event) {
    console.log("NOT IMPLEMENTED");
  }
}