@softvisio/core
Version:
Softisio core
23 lines (17 loc) • 454 B
JavaScript
import Storage from "./storage.js";
export default Super =>
class extends Super {
// protected
async _install () {
return new Storage( this.app, this.config );
}
async _configure () {
return this.instance.configure();
}
async _init () {
return this.instance.init();
}
async _start () {
return this.instance.start();
}
};