Tobias
spand
public interface GitHubService { @GET("users/{user}/repos") suspend fun listRepos(@Path("user") user: String): List<Repo> }
Hyun