SUBZERO-MD / command.js
mrfrank-ofc's picture
Upload 8 files
b74b1a0 verified
raw
history blame
486 Bytes
var commands = [];
function cmd(info, func) {
var data = info;
data.function = func;
if (!data.dontAddCommandList) data.dontAddCommandList = false;
if (!info.desc) info.desc = '';
if (!data.fromMe) data.fromMe = false;
if (!info.category) data.category = 'misc';
if(!info.filename) data.filename = "Not Provided";
commands.push(data);
return data;
}
module.exports = {
cmd,
AddCommand:cmd,
Function:cmd,
Module:cmd,
commands,
};