diff --git a/CustomBot/src/main/kotlin/CustomBot.kt b/CustomBot/src/main/kotlin/CustomBot.kt index b82582c..3c19749 100644 --- a/CustomBot/src/main/kotlin/CustomBot.kt +++ b/CustomBot/src/main/kotlin/CustomBot.kt @@ -25,7 +25,21 @@ suspend fun main(vararg args: String) { ) } - telegramBotWithBehaviourAndLongPolling(botToken, CoroutineScope(Dispatchers.IO), testServer = isTestServer) { + telegramBotWithBehaviourAndLongPolling( + botToken, + CoroutineScope(Dispatchers.IO), + testServer = isTestServer, + builder = { + includeMiddlewares { + addMiddleware { + doOnRequestReturnResult { result, request, _ -> + println("Result of $request:\n\n$result") + null + } + } + } + } + ) { // start here!! val me = getMe() println(me) diff --git a/gradle.properties b/gradle.properties index 1e36528..46bae98 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ kotlin.daemon.jvmargs=-Xmx3g -Xms500m kotlin_version=2.0.20 -telegram_bot_api_version=18.2.1 +telegram_bot_api_version=18.2.2 micro_utils_version=0.22.4 serialization_version=1.7.3 ktor_version=2.3.12