recime-bot-runtime
Version:
This runtime is intended to run inside a micro-service container with platform specific integration and module interpreter.
13 lines (12 loc) • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Channel = /** @class */ (function () {
function Channel(context) {
this.context = context;
}
Channel.prototype.execute = function (body, parameters, handler) {
throw "Not Implemented";
};
return Channel;
}());
exports.Channel = Channel;