mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 13:02:38 +00:00
14 lines
216 B
JavaScript
14 lines
216 B
JavaScript
var Authority = require("./authority.js");
|
|
|
|
Commands = [];
|
|
|
|
Commands["info"] = {
|
|
oplevel : 0,
|
|
fn : function(bot, params, message){
|
|
|
|
bot.reply(message, "Info!");
|
|
|
|
}
|
|
}
|
|
|
|
exports.Commands = Commands;
|