slack-phrase-command/index.js
2014-08-09 16:57:42 -05:00

12 lines
277 B
JavaScript

module.exports = function(configuration) {
return function(ee) {
ee.on('roll', function(slack) {
try {
slack.replyUser(slack.text);
} catch (e) {
slack.error(e.toString());
}
});
};
};