Exposed
To save the state in the database, it is necessary to connect to it using Exposed (example). Then add the dependency and specify the sources:
dependencies {
implementation("io.github.dehuckakpyt.telegrambot:telegram-bot-core:0.12.1a")
implementation("io.github.dehuckakpyt.telegrambot:telegram-bot-source-exposed:0.12.1a")
}
val config = TelegramBotConfig().apply {
messageSource = { MessageSource.inDatabase }
receiving {
callbackContentSource = { CallbackContentSource.inDatabase(maxCallbackContentsPerUser = 20) }
chainSource = { ChainSource.inDatabase }
telegramUserSource = { TelegramUserSource.inDatabase }
telegramChatSource = { TelegramChatSource.inDatabase }
telegramChatStatusEventSource = { TelegramChatStatusEventSource.inDatabase }
}
}
Last modified: 23 February 2025