I'm trying to run a few http calls asynchronously ...
# coroutines
t
I'm trying to run a few http calls asynchronously with coroutines but I'm having trouble retrieving the final result, as I cannot await outside of the scope. Do I need to use runBlocking or does it only serve a purpose in tests
d
you can use runBlocking oder every other coroutine builder, like launch or async