@nelts/http
Version:
http for nelts worker
24 lines (23 loc) • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Controller {
constructor(plugin) {
this.app = plugin;
}
get logger() {
return this.app.logger;
}
get messager() {
return this.app.messager;
}
send(method, data, options) {
return this.messager.send(method, data, options);
}
asyncSend(method, data, options) {
return this.messager.asyncSend(method, data, options);
}
asyncHealth() {
return this.messager.asyncHealth();
}
}
exports.default = Controller;