Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Last active December 28, 2017 08:05
Show Gist options
  • Save jwalgemoed/544f7cbdecdf3620b5c52edb69664e5f to your computer and use it in GitHub Desktop.
Save jwalgemoed/544f7cbdecdf3620b5c52edb69664e5f to your computer and use it in GitHub Desktop.
fun HttpHeaders.accept(value: String) {
this.put(HttpHeaders.ACCEPT, listOf(value))
}
fun HttpHeaders.contentType(value: String) {
this.put(HttpHeaders.CONTENT_TYPE, listOf(value))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment