Skip to content

Instantly share code, notes, and snippets.

@chiragthummar
Created December 23, 2023 09:38
Show Gist options
  • Save chiragthummar/320d89e034fa103084f022513278e997 to your computer and use it in GitHub Desktop.
Save chiragthummar/320d89e034fa103084f022513278e997 to your computer and use it in GitHub Desktop.
import com.md.jetpackcomposemviarchitecture.data.remote.dto.ImageListDto
import retrofit2.http.GET
import retrofit2.http.Query
interface ImageApi {
@GET("search")
suspend fun getInfiniteApiImages(
@Query("q") q : String
): ImageListDto
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment