@softvisio/core
Version:
Softisio core
27 lines (20 loc) • 555 B
JavaScript
import Notifications from "./notifications.js";
export default Super =>
class extends Super {
// protected
async _install () {
return new Notifications( this.app, this.config );
}
async _configure () {
return this.instance.configure();
}
async _init () {
return this.instance.init();
}
async _start () {
return this.instance.start();
}
async _destroy () {
return this.instance.destroy();
}
};