mirror of
https://github.com/InsanusMokrassar/BooruGrabberTelegramBot.git
synced 2024-11-21 15:43:46 +00:00
fix of build
This commit is contained in:
parent
3e2b6e67e9
commit
a8c317af44
@ -41,6 +41,6 @@ application {
|
|||||||
}
|
}
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_11
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
targetCompatibility = JavaVersion.VERSION_11
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ krontab = "2.5.0"
|
|||||||
kslog = "1.3.6"
|
kslog = "1.3.6"
|
||||||
ktor = "2.3.12"
|
ktor = "2.3.12"
|
||||||
exposed = "0.55.0"
|
exposed = "0.55.0"
|
||||||
psql = "42.6.0"
|
psql = "42.7.4"
|
||||||
clikt = "5.0.1"
|
clikt = "5.0.1"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import com.github.ajalt.clikt.core.parse
|
||||||
import dev.inmo.krontab.utils.asFlowWithDelays
|
import dev.inmo.krontab.utils.asFlowWithDelays
|
||||||
import dev.inmo.micro_utils.coroutines.*
|
import dev.inmo.micro_utils.coroutines.*
|
||||||
import dev.inmo.micro_utils.pagination.utils.doForAllWithNextPaging
|
import dev.inmo.micro_utils.pagination.utils.doForAllWithNextPaging
|
||||||
@ -63,9 +64,9 @@ suspend fun main(args: Array<String>) {
|
|||||||
{ text("config") },
|
{ text("config") },
|
||||||
"configs"
|
"configs"
|
||||||
).withMapper(
|
).withMapper(
|
||||||
{ chatId },
|
{ chatId.long },
|
||||||
{ json.encodeToString(ChatSettings.serializer(), this) },
|
{ json.encodeToString(ChatSettings.serializer(), this) },
|
||||||
{ ChatId(this) },
|
{ ChatId(RawChatId(this)) },
|
||||||
{ json.decodeFromString(ChatSettings.serializer(), this) },
|
{ json.decodeFromString(ChatSettings.serializer(), this) },
|
||||||
).fullyCached(scope = scope)
|
).fullyCached(scope = scope)
|
||||||
|
|
||||||
@ -75,9 +76,9 @@ suspend fun main(args: Array<String>) {
|
|||||||
{ text("url") },
|
{ text("url") },
|
||||||
"chatsUrlsSeen"
|
"chatsUrlsSeen"
|
||||||
).withMapper(
|
).withMapper(
|
||||||
{ chatId },
|
{ chatId.long },
|
||||||
{ this },
|
{ this },
|
||||||
{ ChatId(this) },
|
{ ChatId(RawChatId(this)) },
|
||||||
{ this },
|
{ this },
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user