`fun getFoo() = async<String> { ... }` becom...
# coroutines
k
fun getFoo() = async<String> { ... }
becomes
fun getFoo(): CompletableFuture<String> = async { ... }