package com.example.cosmosclient.views;
import retrofit2.Call;
import retrofit2.http.POST;
import retrofit2.http.Path;
import retrofit2.http.Query;
public interface Signin {
@POST("users/{uId}/login")
Call<login> loginList(@Path("uId") String uId, @Query("pw") String pw);
}