Skip to content

Instantly share code, notes, and snippets.

@harmittaa
Last active July 13, 2019 17:02
Show Gist options
  • Save harmittaa/6a15140cc276f22528d04fda010919e1 to your computer and use it in GitHub Desktop.
Save harmittaa/6a15140cc276f22528d04fda010919e1 to your computer and use it in GitHub Desktop.
Koin 2.0 and Retrofit 2.6.0 example
import com.github.harmittaa.koinexample.model.Weather
import retrofit2.http.GET
interface WeatherApi {
@GET("weather?q=Helsinki&units=metric")
suspend fun getForecast(): Weather
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment