mbonnin
03/29/2020, 11:58 AMactual fun macOSMain() {
GlobalScope.launch(mainDispatcher) {
val response = HttpClient {
}.get<HttpResponse>("<https://google.com/>") {
}
println("response status is: ${response.status}")
}
CFRunLoopRun()
}
Full repo at: https://github.com/martinbonnin/kmpCli/blob/ktor-hangs