This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Paulina Sadowska on 09.12.2017. | |
*/ | |
public interface UploadsImService { | |
@Multipart | |
@POST("/api") | |
Single<ResponseBody> postImage(@Part MultipartBody.Part image); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FileUploaderModel(UploadsImService service) { | |
this.service = service; | |
} |