methods generation removed

This commit is contained in:
Elena Bobkova 2018-11-19 15:05:16 +03:00
parent 2f19c95e90
commit a6a2d95a27
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
/*
* 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 %}
}