diff --git a/commands/whoami.js b/commands/whoami.js new file mode 100644 index 0000000..f7317d4 --- /dev/null +++ b/commands/whoami.js @@ -0,0 +1,6 @@ +var app = require('../app.js'); + +exports.roles = ['Admins', 'Moderators']; +exports.command = function (message, reply) { + app.logChannel.sendMessage(`I am running under ${process.env.USER}.`); +};