19 lines
467 B
Java
19 lines
467 B
Java
package com.android.uiuios.network.api;
|
|
|
|
import com.android.uiuios.network.BaseResponse;
|
|
import com.android.uiuios.network.URLPath;
|
|
|
|
import io.reactivex.Observable;
|
|
import retrofit2.http.Field;
|
|
import retrofit2.http.FormUrlEncoded;
|
|
import retrofit2.http.POST;
|
|
|
|
public interface RunningApp {
|
|
@FormUrlEncoded
|
|
@POST(URLPath.RUN_NEW_APP)
|
|
Observable<BaseResponse> sendAppInfo(
|
|
@Field("sn") String sn,
|
|
@Field("app") String app
|
|
);
|
|
}
|