mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-19 06:43:51 +00:00
commit
51e349a5db
@ -2,6 +2,9 @@
|
||||
|
||||
## 0.9.14
|
||||
|
||||
* `Versions`:
|
||||
* `Klock`: `2.6.2` -> `2.6.3`
|
||||
* `Ktor`: `1.6.7` -> `1.6.8`
|
||||
* `Ktor`:
|
||||
* Add temporal files uploading functionality (for clients to upload and for server to receive)
|
||||
|
||||
|
@ -8,10 +8,10 @@ jb-compose = "1.1.1"
|
||||
jb-exposed = "0.37.3"
|
||||
jb-dokka = "1.6.10"
|
||||
|
||||
klock = "2.6.2"
|
||||
klock = "2.6.3"
|
||||
uuid = "0.4.0"
|
||||
|
||||
ktor = "1.6.7"
|
||||
ktor = "1.6.8"
|
||||
|
||||
gh-release = "2.2.12"
|
||||
|
||||
|
@ -1,8 +1,10 @@
|
||||
package dev.inmo.micro_utils.ktor.common
|
||||
|
||||
import kotlin.jvm.JvmInline
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
const val DefaultTemporalFilesSubPath = "temp_upload"
|
||||
|
||||
@Serializable
|
||||
@JvmInline
|
||||
value class TemporalFileId(val string: String)
|
||||
|
@ -94,7 +94,8 @@ class UnifiedRouter(
|
||||
}
|
||||
|
||||
companion object {
|
||||
val default = defaultUnifiedRouter
|
||||
val default
|
||||
get() = defaultUnifiedRouter
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user