slack-phrase-command/index.js

12 lines
277 B
JavaScript
Raw Normal View History

2014-08-09 21:57:42 +00:00
module.exports = function(configuration) {
return function(ee) {
ee.on('roll', function(slack) {
try {
slack.replyUser(slack.text);
} catch (e) {
slack.error(e.toString());
}
});
};
};