rybalkinsd / kohttp

Kotlin DSL http client
https://kohttp.gitbook.io
Apache License 2.0
478 stars 42 forks source link

Move Header to a dedicated class #134

Open rybalkinsd opened 5 years ago

rybalkinsd commented 5 years ago
typealias Header = Pair<String, String>

internal val Header.name
    get() = this.first

internal val Header.value
    get() = this.second