Unfortunately, we couldn't find the page you're looking for. Please check the link and try again.
Here is the instructional guide to setup your bot in Discordus.
pip install discordus
If you haven't already installed Discordus, use this command in your terminal to download the python module.
async def my_command(interaction,_):
To define your command use async functions. Since you're using the basic command documentation we will mainly focus on how to add commands without options.
add_command("greet", "Greets You!", my_command)
Now you will use the add_command() function with the paramaters of name, description, response, and more.
Finally, run your bot and see if it logs in.