summaryrefslogtreecommitdiff
path: root/app/services/commands/application-command.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/commands/application-command.js')
-rw-r--r--app/services/commands/application-command.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/services/commands/application-command.js b/app/services/commands/application-command.js
new file mode 100644
index 0000000..ceb38f0
--- /dev/null
+++ b/app/services/commands/application-command.js
@@ -0,0 +1,9 @@
+export default class ApplicationCommand {
+ notify(event) {
+ this.run(event);
+ }
+
+ run(event) {
+ console.log("NOT IMPLEMENTED");
+ }
+}