Is there a way to opt out of coroutines and use kt...
# ktor
h
Is there a way to opt out of coroutines and use ktor as a simple synchronous client? I'm trying it for Ios and I don't know a thing about coroutines.
d
Ktor is synchronous so I'm going to assume you meant blocking. Wrap the client calls in
runBlocking {...}
.
👍 1
h
Thanks. That's the function i've been looking for.