<@U33S3CR1A> `get` is a blocking call. it will blo...
# coroutines
o
@rrader
get
is a blocking call. it will block the current thread if it has to wait for a result.
await
is a suspending call. It might suspend the current coroutine, but it will not block the current thread.
👍 1