Update commands.py

This commit is contained in:
ElBe 2022-10-14 21:36:20 +02:00 committed by GitHub
parent d9bb7494c6
commit 71e2f7455e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ Command creator for the discord.py Bot.
© by ElBe. © by ElBe.
Version: 0.1.4 Version: 0.1.5
NOTE: Only execute once. NOTE: Only execute once.
''' '''
@ -11,6 +11,14 @@ NOTE: Only execute once.
#Imports #Imports
import command_creator import command_creator
#Stop command
json = {
'name': 'stop',
'type': 1,
'description': 'Stops the bot.'
}
command_creator.create_command(json)
#Help command #Help command
json = { json = {
'name': 'help', 'name': 'help',