UNPKG

@zoranwong/acc-engine.js

Version:

A javascript framework to accelerate your applicatin developement

27 lines (21 loc) 398 B
import Application from "../foundation/Application"; export default class Command { /** * @property {Application} #app * */ #app = null; /** * @param {Application} app * */ constructor(app) { this.#app = app; } async handle(...params) { } /** * @return {Application} * */ get app () { return this.#app; } }