There's no new type classes or data types. The ada...
# arrow-contributors
l
There's no new type classes or data types. The adapter let you to use IO or any kind of Async<F> as a response in the Retrofit client interface. Like this:
Copy code
interface ApiClient {
@GET("search/repositories")
    fun getRepositoriesIO(@Query("q") language: String,
                          @Query("sort") order: String,
                          @Query("page") page: Int): IO<GithubAnswerDto>
}