mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI-examples.git
synced 2026-09-02 14:19:05 +00:00
7 lines
251 B
Kotlin
7 lines
251 B
Kotlin
import dev.inmo.micro_utils.common.MPPFile
|
|
|
|
/** JVM entry point; [args] contains the bot token followed by an optional picker root. */
|
|
suspend fun main(args: Array<String>) {
|
|
doRandomFileSenderBot(args.first(), MPPFile(args.getOrNull(1) ?: ""))
|
|
}
|