mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2026-09-02 22:29:05 +00:00
11 lines
317 B
Kotlin
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)
|
|
}
|
|
}
|