mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
15 lines
216 B
JavaScript
15 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;
|