Files
TelegramBotAPI-examples/StickerInfoBot/jvm_launcher/src/main/kotlin/StickerInfoBotBotJvm.kt
2026-08-21 15:51:06 +06:00

11 lines
317 B
Kotlin

/**
* Runs [activateStickerInfoBot] on the JVM and prints its startup bot information to standard output.
*
* @param args the Telegram bot token as the first element; additional elements are ignored
*/
suspend fun main(args: Array<String>) {
activateStickerInfoBot(args.first()) {
println(it)
}
}