Jak zrobić bot, przywitaj się , gdy użytkownik wita w Discord with Python

@client.command()
async def hello(ctx):
    await ctx.send(f"hello, {ctx.author.name}")
TarunDaCoder