Skip to content

Instantly share code, notes, and snippets.

@pprathameshmore
Created June 6, 2019 07:17
Show Gist options
  • Save pprathameshmore/b903b3863217be55eda0c702e7578883 to your computer and use it in GitHub Desktop.
Save pprathameshmore/b903b3863217be55eda0c702e7578883 to your computer and use it in GitHub Desktop.
package com.prathameshmore.retrofit_android;
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
public interface JsonPlaceHolderApi {
@GET("posts/1")
Call<List<Post>> getPosts();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment