Skip to content

Instantly share code, notes, and snippets.

View pvthiendeveloper's full-sized avatar

Thien Pham pvthiendeveloper

View GitHub Profile
/**
* Created by Paulina Sadowska on 09.12.2017.
*/
public interface UploadsImService {
@Multipart
@POST("/api")
Single<ResponseBody> postImage(@Part MultipartBody.Part image);
}
@pvthiendeveloper
pvthiendeveloper / filename.java
Last active October 24, 2019 06:48
not thing
FileUploaderModel(UploadsImService service) {
this.service = service;
}