UNPKG

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