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) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Validator = /** @class */ (function () {
function Validator(responder) {
this.responder = responder;
}
Validator.prototype.validate = function (__, vars, args, data) {
// Intentionally left blank.
};
return Validator;
}());
exports.Validator = Validator;