Cómo hacer un bot que salga hola Cuando un usuario dice hola en discordia con python
@client.command()
async def hello(ctx):
await ctx.send(f"hello, {ctx.author.name}")
TarunDaCoder