Vectras-VM-Android/app/src/main/java/com/anbui/elephant/retrofit2utils/ApiService.java
An Bui 652dfc663e 3.9.2
- Added 3dfx wrappers disc and VirtIO for Windows disc for mounting to optical drives and use.
- Added UEFI option for virtual machines.
- Asset files are only checked and extracted when necessary.
2026-03-29 20:47:03 +07:00

22 lines
521 B
Java

package com.anbui.elephant.retrofit2utils;
import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Streaming;
import retrofit2.http.Url;
public interface ApiService {
@GET
Call<ResponseBody> getRawJson(@Url String url);
@Streaming
@GET
Call<ResponseBody> downloadFile(@Url String url);
@POST
Call<ResponseBody> post(@Url String url, @Body RequestBody body);
}