diff --git a/commands/meaningOfLife.js b/commands/meaningOfLife.js new file mode 100644 index 0000000..b45e979 --- /dev/null +++ b/commands/meaningOfLife.js @@ -0,0 +1,7 @@ +'use strict'; + +module.exports = function meaningOfLife(controller) { + controller.hears('meaning of life', ['direct_mention'], function(bot, message) { + bot.reply(message, '42'); + }); +}