Created
July 25, 2018 18:02
-
-
Save codingpizza/d3f4eb807e164f4ed27dcbd9b1cbbd90 to your computer and use it in GitHub Desktop.
PizzaService Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface PizzaService { | |
@GET("/pizzas") | |
fun listPizzas(): Call<List<Pizza>> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment