1export default class ApplicationCommand { 2 notify(event) { 3 this.run(event); 4 } 5 6 run(event) { 7 console.log("NOT IMPLEMENTED"); 8 } 9}