diff options
author | Indrajith K L | 2021-03-27 21:57:16 +0530 |
---|---|---|
committer | Indrajith K L | 2021-03-27 21:57:16 +0530 |
commit | e3dba82cf3cdbdf5c0aad3d308013695a2074ecf (patch) | |
tree | 83b1b0f5f968ca3f4c260a068fe364821e68176a /src/configs | |
parent | 6048206733b3d6bb9ffbacb3e54f4bef88777585 (diff) | |
download | lul-bot-e3dba82cf3cdbdf5c0aad3d308013695a2074ecf.tar.gz lul-bot-e3dba82cf3cdbdf5c0aad3d308013695a2074ecf.tar.bz2 lul-bot-e3dba82cf3cdbdf5c0aad3d308013695a2074ecf.zip |
Code Refactoring
* Adds Config for commands
* Moved Casual Messages to language.json
Diffstat (limited to 'src/configs')
-rw-r--r-- | src/configs/commands.config.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/configs/commands.config.json b/src/configs/commands.config.json new file mode 100644 index 0000000..1865374 --- /dev/null +++ b/src/configs/commands.config.json @@ -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" + } + ] +}
\ No newline at end of file |