mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2026-09-13 11:34:13 +00:00
5 lines
159 B
Kotlin
5 lines
159 B
Kotlin
/** JVM entry point; [args] must contain the bot token as its first element. */
|
|
suspend fun main(args: Array<String>) {
|
|
doInlineQueriesBot(args.first())
|
|
}
|