Skip to content

Instantly share code, notes, and snippets.

@iambaljeet
Created January 24, 2020 12:44
Show Gist options
  • Save iambaljeet/1339299ea7b06fd0f1a9932a36994cd8 to your computer and use it in GitHub Desktop.
Save iambaljeet/1339299ea7b06fd0f1a9932a36994cd8 to your computer and use it in GitHub Desktop.
interface ApiService {
companion object {
val BASE_URL: String = "https://demo.dataverse.org/api/"
}
@GET("search")
suspend fun getResult(
@Query("q") query: String?): Response<SearchResultModel?>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment