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