Newer
Older
CosmosClient / app / src / main / java / com / example / cosmosclient / views / Signin.java
k-morimoto on 4 Jun 2019 279 bytes トースト追加
package com.example.cosmosclient.views;

import java.util.List;

import retrofit2.Call;
import retrofit2.http.POST;
import retrofit2.http.Path;

public interface Signin {
    @POST("/users/{uId}/login")
    Call<login> loginList(@Path("uId") String uId, @Path("pw")String pw);
}