TelegramBotAPI-examples/ResenderBot/native_launcher/src/nativeMain/kotlin/ResenderBot.kt

10 lines
175 B
Kotlin
Raw Normal View History

2023-04-19 14:20:11 +00:00
import kotlinx.coroutines.runBlocking
fun main(vararg args: String) {
runBlocking {
activateResenderBot(args.first()) {
println(it)
}
}
}