From aae55e37798edaf5d0b16ee6d2af2fb7da0e2809 Mon Sep 17 00:00:00 2001 From: Arvind Kumar Date: Fri, 16 Sep 2016 23:40:12 +0530 Subject: [PATCH] Added !exit command --- commands/exit.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 commands/exit.js diff --git a/commands/exit.js b/commands/exit.js new file mode 100644 index 0000000..7f0a4d5 --- /dev/null +++ b/commands/exit.js @@ -0,0 +1,5 @@ +'use strict'; + +module.exports = function(bot, from, args, out) { + process.exit(0); +}