Hi,
I would like to call a `async` function from callback of consumer.
How an I do that?
async do_something_async():
pass
async def callback(ch, method, properties, body):
await do_something_async()
channel.basic_consume(queue=queue_name, on_message_callback=callback, auto_ack=True)