Skip to content

Instantly share code, notes, and snippets.

@harilee1325
Last active August 30, 2019 21:34
Show Gist options
  • Save harilee1325/4b5686a196438c24692bb9f72b0bdf19 to your computer and use it in GitHub Desktop.
Save harilee1325/4b5686a196438c24692bb9f72b0bdf19 to your computer and use it in GitHub Desktop.
package com.example.retrofitsimple;
import retrofit2.Call;
import retrofit2.http.GET;
public interface ApiInterface {
@GET("todos/1")
Call<Response> getAllData();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment