blob: dfd7782fd7ec5d79e0d60c91ffa19e2324d18d79 [file] [log] [blame]
package org.apache.fineract.data.services;
import org.apache.fineract.data.models.customer.Country;
import java.util.List;
import io.reactivex.Observable;
import retrofit2.http.GET;
/**
* @author Rajan Maurya
* On 26/07/17.
*/
public interface AnonymousService {
@GET("http://restcountries.eu/rest/v2/all?fields=name;alpha2Code;translations")
Observable<List<Country>> getCountries();
}