Skip to content

Instantly share code, notes, and snippets.

View RoRoche's full-sized avatar

Romain Rochegude RoRoche

View GitHub Profile
@RoRoche
RoRoche / RestRequest.kt
Last active November 19, 2019 18:05
Kotlin interface for RestRequest
import okhttp3.Response
interface RestRequest {
fun response(): Response
fun cancel()
abstract class Wrap protected constructor(
protected val origin: RestRequest
) : RestRequest by origin
@RoRoche
RoRoche / build_okhttp3.gradle
Created November 6, 2019 12:46
build.gradle for OkHttp3 dependency
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.2.2'