fun Contract.Builder.request(builder: Request.Builder.() -> Unit) { | |
this.request = Request.Builder().apply(builder) | |
} | |
fun Contract.Builder.response(builder: Response.Builder.() -> Unit) { | |
this.response = Response.Builder().apply(builder) | |
} | |
fun Request.Builder.headers(headers: HttpHeaders.() -> Unit) { | |
this.headers = HttpHeaders().apply(headers) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment