commonMain.tech.skot.core.SKUri.kt Maven / Gradle / Ivy
package tech.skot.core
data class SKUri(
val scheme: String?,
val host: String?,
val pathSegments: List,
val parameters: Map>
) {
fun urlWithoutParameters():String {
return "$scheme://$host/${pathSegments.joinToString("/")}"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy