package com.example.cosmosclient.views; import retrofit2.Call; import retrofit2.http.POST; import retrofit2.http.Path; public interface Signup { @POST("/users") //icon-image一応入れてる Call<User> listUser(@Path("name") String name,@Path("pw") String pw,@Path("icon-image") String icon_image); }