mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2025-12-05 13:55:38 +00:00
8 lines
138 B
Kotlin
8 lines
138 B
Kotlin
import kotlinx.coroutines.runBlocking
|
|
|
|
fun main(args: Array<String>) {
|
|
runBlocking {
|
|
doInlineQueriesBot(args.first())
|
|
}
|
|
}
|