Comment faire un bot dire bonjour lorsqu'un utilisateur dit bonjour dans Discord avec Python

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