Skip to content

Instantly share code, notes, and snippets.

@sberoch
Created July 13, 2020 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sberoch/886d740052c1a7451cf5c3658593bfb4 to your computer and use it in GitHub Desktop.
Save sberoch/886d740052c1a7451cf5c3658593bfb4 to your computer and use it in GitHub Desktop.
interface CharacterService {
@GET("character")
suspend fun getAllCharacters() : Response<CharacterList>
@GET("character/{id}")
suspend fun getCharacter(@Path("id") id: Int): Response<Character>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment