1@commands.command(name='test', aliases=['testcommand', 'testing'])
2async def test(self, ctx):
3 await ctx.send("This a test command")
4
5#will run with either 'test, testcommand or testing
1@client.command(name="command", aliases = ["cmds"])
2async def slowmode(ctx):
3 await ctx.send("This is a command.")