![JAR search and dependency download from the Maven repository](/logo.png)
org.http4k.cloudnative.env.Host.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-cloudnative Show documentation
Show all versions of http4k-cloudnative Show documentation
Machinery for running Http4k apps in cloud-native environments
package org.http4k.cloudnative.env
data class Host(val value: String) {
init {
require(value.isNotEmpty()) { "Could not construct Host from '$value'" }
}
fun asAuthority() = Authority(this)
companion object {
val localhost = Host("localhost")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy