mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-11-14 11:53:46 +00:00
updates in dependencies and update bot setup logic
This commit is contained in:
parent
3912ce2ba4
commit
e2294965ff
@ -2,6 +2,12 @@
|
||||
|
||||
## 1.0.1
|
||||
|
||||
* `Versions`
|
||||
* `tgbotapi`: `1.1.3`
|
||||
* `microutils`: `0.10.5`
|
||||
* `Plugin`:
|
||||
* All plugins will be loaded in parallel
|
||||
|
||||
## 1.0.0
|
||||
|
||||
* `Versions`
|
||||
|
@ -1,5 +1,6 @@
|
||||
package dev.inmo.plagubot
|
||||
|
||||
import dev.inmo.micro_utils.coroutines.runCatchingSafely
|
||||
import dev.inmo.plagubot.config.*
|
||||
import dev.inmo.tgbotapi.bot.ktor.telegramBot
|
||||
import dev.inmo.tgbotapi.extensions.api.webhook.deleteWebhook
|
||||
@ -56,15 +57,20 @@ data class PlaguBot(
|
||||
}
|
||||
|
||||
override suspend fun BehaviourContext.setupBotPlugin(koin: Koin) {
|
||||
config.plugins.forEach {
|
||||
runCatching {
|
||||
config.plugins.map {
|
||||
launch {
|
||||
runCatchingSafely {
|
||||
logger.info("Start loading of $it")
|
||||
with(it) {
|
||||
setupBotPlugin(koin)
|
||||
}
|
||||
}.onFailure { e ->
|
||||
logger.log(Level.WARNING, "Unable to load bot part of $it", e)
|
||||
}.onSuccess {
|
||||
logger.info("Complete loading of $it")
|
||||
}
|
||||
}
|
||||
}.joinAll()
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -4,8 +4,8 @@ kt = "1.6.21"
|
||||
kt-serialization = "1.3.3"
|
||||
kt-coroutines = "1.6.1"
|
||||
|
||||
microutils = "0.10.4"
|
||||
tgbotapi = "1.1.0"
|
||||
microutils = "0.10.5"
|
||||
tgbotapi = "1.1.3"
|
||||
|
||||
jb-exposed = "0.38.2"
|
||||
jb-dokka = "1.6.21"
|
||||
|
Loading…
Reference in New Issue
Block a user