mirror of
https://github.com/InsanusMokrassar/PlaguBot.git
synced 2024-11-01 05:23:47 +00:00
12 lines
269 B
Kotlin
12 lines
269 B
Kotlin
package dev.inmo.plagubot
|
|
|
|
import kotlinx.serialization.InternalSerializationApi
|
|
|
|
/**
|
|
* This method by default expects one argument in [args] field: path to config
|
|
*/
|
|
@InternalSerializationApi
|
|
suspend fun main(args: Array<String>) {
|
|
PlaguBot.start(args).join()
|
|
}
|