PlaguBotCommandsPlugin/src/main/kotlin/KoinCommandKeeperGetters.kt
2022-07-09 21:09:13 +06:00

11 lines
222 B
Kotlin

package dev.inmo.plagubot.plugins.commands
import org.koin.core.Koin
import org.koin.core.scope.Scope
val Scope.commandsKeeper
get() = get<CommandsKeeper>()
val Koin.commandsKeeper
get() = get<CommandsKeeper>()