Created
September 26, 2017 07:45
-
-
Save mikkipastel/68f99a8b8dc5cb3592e80520ab765293 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface Webservice { | |
@GET("/users/{user}") | |
Call<User> getUser(@Path("user") String userId); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment