mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2024-11-14 20:33:53 +00:00
10 lines
175 B
Kotlin
10 lines
175 B
Kotlin
import kotlinx.coroutines.runBlocking
|
|
|
|
fun main(vararg args: String) {
|
|
runBlocking {
|
|
activateResenderBot(args.first()) {
|
|
println(it)
|
|
}
|
|
}
|
|
}
|