@reactivehub/cli
Version:
20 lines (17 loc) • 435 B
JavaScript
;
var _validators = require('../../validators');
const create = [{
type: 'input',
name: 'id',
message: 'Enter the event id ...',
validate: input => (0, _validators.idPatternValidator)(input)
}, {
type: 'input',
name: 'eventGroup',
message: 'Enter the event group name ...',
validate: input => (0, _validators.idPatternValidator)(input)
}];
module.exports = {
create
};
//# sourceMappingURL=event.js.map