update dependencies

This commit is contained in:
InsanusMokrassar 2023-11-25 12:44:05 +06:00
parent 7186d5e624
commit d842dab5b8
2 changed files with 13 additions and 4 deletions

View File

@ -1,5 +1,10 @@
import dev.inmo.kslog.common.KSLog
import dev.inmo.kslog.common.LogLevel
import dev.inmo.kslog.common.defaultMessageFormatter
import dev.inmo.kslog.common.filter.filtered
import dev.inmo.tgbotapi.bot.ktor.telegramBot
import dev.inmo.tgbotapi.extensions.api.bot.getMe
import dev.inmo.tgbotapi.utils.DefaultKTgBotAPIKSLog
/**
* This is one of the most easiest bot - it will just print information about itself
@ -7,6 +12,10 @@ import dev.inmo.tgbotapi.extensions.api.bot.getMe
suspend fun main(vararg args: String) {
val botToken = args.first()
KSLog.default = KSLog { level: LogLevel, tag: String?, message: Any, throwable: Throwable? ->
println(defaultMessageFormatter(level, tag, message, throwable))
}
val bot = telegramBot(botToken)
println(bot.getMe())

View File

@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx2g
kotlin_version=1.9.20
telegram_bot_api_version=9.3.0
micro_utils_version=0.20.12
serialization_version=1.6.0
ktor_version=2.3.5
telegram_bot_api_version=9.4.0-branch_9.4.0-build1937
micro_utils_version=0.20.14
serialization_version=1.6.1
ktor_version=2.3.6