url builder:Kotlin Typesafe URL构建器 源码
网址构建器 Kotlin的直观URL构建器。 当前支持JVM和JS目标 设置 repositories { maven( " https://detachhead.github.io/maven " ) } 多平台项目 kotlin { sourceSets { val commonMain by getting { dependencies { implementation( " io.github.detachhead:url-builder: $version " ) } } } } 例子 assertEquals( " https://foo.com:443/asdf/sdfg?foo=bar&ssd=dfg " , URLbuil
用户评论