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) • 355 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var NotSupported = /** @class */ (function () {
function NotSupported(bot) {
this.bot = bot;
}
NotSupported.prototype.process = function (payload) {
return Promise.resolve();
};
return NotSupported;
}());
exports.NotSupported = NotSupported;