Rozbot/lib/commands/Command.js

9 lines
356 B
JavaScript
Raw Permalink Normal View History

2016-07-11 23:24:15 -04:00
module.exports = function(commandName, condition, commandFunction) {
//Name for identification purproses
this.name = commandName;
//Must be a function which returns a boolean if it believes that the it's the appropriate command for the message
this.condition = condition;
//The command's core functionality
this.respond = commandFunction;
}