@zoranwong/acc-engine.js
Version:
A javascript framework to accelerate your applicatin developement
25 lines (22 loc) • 481 B
JavaScript
import Application from "../foundation/Application";
export default class Database {
/**@property {FunctionConstructor} #driver*/
/**
* @param {Application} app
* */
constructor(app) {
this.
this.
}
get store() {
return new this.driver();
}
/**
* @return {FunctionConstructor}
* */
get driver() {
return this.
}
}