Skip to content

Instantly share code, notes, and snippets.

@vikasmain
Created January 15, 2022 12:14
Show Gist options
  • Select an option

  • Save vikasmain/20050382e5472fa822c38e6b259b51b2 to your computer and use it in GitHub Desktop.

Select an option

Save vikasmain/20050382e5472fa822c38e6b259b51b2 to your computer and use it in GitHub Desktop.
import com.app.coroutinesmvp.data.MovieListResponse
import retrofit2.http.GET
import retrofit2.http.Query
interface MovieApi {
@GET("/3/discover/movie")
suspend fun getMoviesList(@Query("api_key") apiKey: String): MovieListResponse
}
@kezeh32
Copy link
Copy Markdown

kezeh32 commented Jan 15, 2022

Is this kotlin?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment