Python 3.9 How i get returned value from async function !
import asyncio
async def test(asd: bool):
if asd is True:
print("true")
return True
else:
print("not true")
return False
# simple function return
res = test(asd=0)
print(f"{res=}, {type(res)=}")
my_response = asyncio.run(test(asd))