mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-12-02 15:00:08 +00:00
16 lines
389 B
Kotlin
16 lines
389 B
Kotlin
|
package group_name.module_name.server
|
||
|
|
||
|
import dev.inmo.micro_utils.startup.plugin.StartPlugin
|
||
|
import kotlinx.serialization.json.JsonObject
|
||
|
import org.koin.core.Koin
|
||
|
import org.koin.core.module.Module
|
||
|
|
||
|
object ServerPlugin : StartPlugin {
|
||
|
override fun Module.setupDI(config: JsonObject) {
|
||
|
}
|
||
|
|
||
|
override suspend fun startPlugin(koin: Koin) {
|
||
|
super.startPlugin(koin)
|
||
|
}
|
||
|
}
|