@zoranwong/acc-engine.js
Version:
A javascript framework to accelerate your applicatin developement
27 lines (21 loc) • 398 B
JavaScript
import Application from "../foundation/Application";
export default class Command {
/**
* @property {Application} #app
* */
/**
* @param {Application} app
* */
constructor(app) {
this.
}
async handle(...params) {
}
/**
* @return {Application}
* */
get app () {
return this.
}
}