PlaguBot/bot/src/main/kotlin/dev/inmo/plagubot/App.kt

12 lines
269 B
Kotlin
Raw Normal View History

2020-11-08 13:23:01 +00:00
package dev.inmo.plagubot
2020-11-08 13:04:44 +00:00
2020-11-12 05:52:09 +00:00
import kotlinx.serialization.InternalSerializationApi
2020-11-08 13:04:44 +00:00
2020-11-13 05:25:04 +00:00
/**
* This method by default expects one argument in [args] field: path to config
*/
@InternalSerializationApi
suspend fun main(args: Array<String>) {
2024-09-22 09:29:17 +00:00
PlaguBot.start(args).join()
2020-11-08 13:04:44 +00:00
}