api-generator-templates/Java/Methods.java.twig

17 lines
375 B
Twig

/*
* This code is autogenerated by Touch Instinct tools
*/
package {{ packageName }}.api;
import androidx.annotation.NonNull;
import io.reactivex.Single;
import retrofit2.http.Body;
import retrofit2.http.POST;
public interface {{ name }}Api {
{% for method in methods %}
{%- include 'blocks/method/method-func.twig' with { method: method } %}
{% endfor %}
}