package com.chill.network.`interface` import com.chill.network.model.Country import retrofit2.Call import retrofit2.http.GET interface CountriesService { @GET("/rest/v2/all") fun listCountries(): Call> }