Created
July 20, 2019 19:03
-
-
Save LucianoPAlmeida/0e4a24a072806f977c627557337fb1a3 to your computer and use it in GitHub Desktop.
Kotlin coroutines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun getUser(usid: String) { | |
val token = apiToken() | |
val user = findUser(usid, token) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment