Code Refactoring

* Adds Config for commands
* Moved Casual Messages to language.json
This commit is contained in:
Indrajith K L
2021-03-27 21:57:16 +05:30
parent 6048206733
commit e3dba82cf3
9 changed files with 259 additions and 223 deletions

View File

@@ -0,0 +1,24 @@
{
"commands" :[
{
"name": "jokes",
"description": "Bad Jokes Command",
"file": "./commands/jokes.js"
},
{
"name": "play",
"description": "Play Music",
"file": "./commands/play.js"
},
{
"name": "stop",
"description": "Stop Music",
"file": "./commands/stop.js"
},
{
"name": "loadout",
"description": "Get CoD Mobile User Loadout",
"file": "./commands/loadout.js"
}
]
}