What I did is added some kotlin syntactic sugar on...
# announcements
o
What I did is added some kotlin syntactic sugar on top of okhttp and get something like this:
Copy code
OkHttpClient().executeAsync("<https://api.github.com/users/$user>") {
        success { response -> ... }
        fail { request, e -> ... }
    }