mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2025-12-17 11:45:36 +00:00
9 lines
220 B
Kotlin
9 lines
220 B
Kotlin
import kotlinx.coroutines.runBlocking
|
|
import okio.Path.Companion.toPath
|
|
|
|
fun main(args: Array<String>) {
|
|
runBlocking {
|
|
doRandomFileSenderBot(args.first(), args.getOrNull(1) ?.toPath() ?: "".toPath())
|
|
}
|
|
}
|