temporal unworkable progress

This commit is contained in:
2022-03-13 21:58:10 +06:00
parent b7bdc6cc75
commit ab10f20723
37 changed files with 313 additions and 53 deletions
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
client
jsMain
kotlin
dev
inmo
postssystem
features
common
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
common
src
commonMain
kotlin
dev
inmo
postssystem
features
content
client
src
jsMain
kotlin
dev
inmo
postssystem
features
text
client
build.gradle
src
jsMain
kotlin
dev
inmo
postssystem
features
gradle.properties
gradle
server/src/main/resources/web
services/posts
client
src
commonMain
kotlin
dev
inmo
postssystem
server
src
jvmMain
kotlin
dev
inmo
postssystem
settings.gradle
targets/telegram
content
polls
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
content
polls
client
main
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
content
polls
main
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem
targets
telegram
content
polls
server
loader
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem
targets
telegram
template
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
template
client
main
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
targets
telegram
template
common
main
server
build.gradle
src
jvmMain
kotlin
dev
inmo
postssystem
targets
telegram
template
server

@ -9,6 +9,9 @@ import kotlinx.serialization.Serializable
internal data class TempFileIdentifierInputProvider(
private val tempFile: FileId
) : SimpleInputProvider {
override val contentBytes: Long?
get() = null
override fun invoke(): Input {
TODO("Not yet implemented")
}

@ -9,6 +9,9 @@ import kotlinx.serialization.Serializable
internal data class TempFileIdentifierInputProvider(
val tempFile: FileId
) : SimpleInputProvider {
override val contentBytes: Long?
get() = null
override fun invoke(): Input {
TODO("Not yet implemented")
}