discordpy get bot command code example
Example: discord.py aliases
@commands.command(name='test', aliases=['testcommand', 'testing'])
async def test(self, ctx):
await ctx.send("This a test command")
#will run with either 'test, testcommand or testing