forked from KangJinhuyk/JINHUYK-MD-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.js
40 lines (30 loc) · 1.1 KB
/
command.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺
⭐PROJECT NAME:
JINHUYK-V2 WHATSAPP MD BOT
⭐DEVELOPER
KANG JINHUYK
⭐ MY TEAM
SASAKI COMPAGNIE
⭐ OUR WEBSITE
https://github.com/KangJinhuyk/JINHUYK-MD-V2
© TRY DECRYPTING IF YOU CAN⚠
╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺╺*/
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,
};