Advertisement
Guest User

service

a guest
May 24th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package com.panggilin.chat.remote;
  2.  
  3. import com.panggilin.chat.model.ResObj;
  4.  
  5. import retrofit2.Call;
  6. import retrofit2.http.POST;
  7. import retrofit2.http.Path;
  8.  
  9. public interface UserService {
  10.      @POST("v1/{email}/{password}")
  11.     Call<ResObj> login(@Path("email") String email, @Path("password") String password);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement