📜  如何在不和谐命令重写中添加多个参数 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:28.731000             🧑  作者: Mango

代码示例1
@bot.command()
async def args(ctx, arg1, arg2):
    await bot.say('You sent {} and {}'.format(arg1, arg2))