com.testquack.launcher.SmithClient Maven / Gradle / Ivy
package com.testquack.launcher;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.POST;
public interface SmithClient {
@POST("tasks")
Call createLaunch(@Body Executables executables);
}