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