Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import retrofit.http.GET
  2. import retrofit.http.Query
  3. import rx.Observable
  4.  
  5. interface ApiService {
  6.  
  7. @GET("eventsnextleague.php")
  8. fun getNextMatch(@Query("id") id: String): Observable<ResponseModel>
  9.  
  10. @GET("lookup_all_teams.php")
  11. fun getTeamByLigaId(@Query("id") id: String): Observable<ResponseModel>
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement