TelegramBotAPI-examples/RandomFileSenderBot/src/jvmMain/kotlin/RandomFileSenderBot.kt

6 lines
160 B
Kotlin
Raw Normal View History

2023-04-19 14:20:11 +00:00
import dev.inmo.micro_utils.common.MPPFile
suspend fun main(args: Array<String>) {
doRandomFileSenderBot(args.first(), MPPFile(args.getOrNull(1) ?: ""))
}