Merge pull request 'Add attachments web end point' (#11) from fixes into main

Reviewed-on: https://codeberg.org/gitnex/tea4j-autodeploy/pulls/11
This commit is contained in:
M M Arif
2023-10-22 13:01:45 +00:00
@@ -27,4 +27,9 @@ public interface WebApi {
@Path("repo") String repo,
@Path("sha") String sha,
@Path("diffType") String diffType);
@Streaming
@GET("attachments/{hashid}")
Call<ResponseBody> getAttachment(
@Path("hashid") String hashid);
}