“Perselisihan py alias” Kode Jawaban

Discord.py alias

@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
_creare_

Perselisihan Perintah Python Alias

@commands.command(aliases=['testcommand', 'testing'])
async def test(self, ctx):
    await ctx.send("This a test command")
skull_is_dull

Perselisihan py alias

@client.command(name="command", aliases = ["cmds"])
async def slowmode(ctx):
	await ctx.send("This is a command.")
Outstanding Octopus

Jawaban yang mirip dengan “Perselisihan py alias”

Pertanyaan yang mirip dengan “Perselisihan py alias”

Lebih banyak jawaban terkait untuk “Perselisihan py alias” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya