discord python command alias

Solutions on MaxInterview for discord python command alias by the best coders in the world

showing results for - "discord python command alias"
Manuel
20 Jun 2019
1@commands.command(aliases=['testcommand', 'testing'])
2async def test(self, ctx):
3    await ctx.send("This a test command")
4