PlaguBotCommandsPlugin/src/main/kotlin/KoinCommandKeeperGetters.kt

11 lines
222 B
Kotlin
Raw Normal View History

2022-07-09 15:09:13 +00:00
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>()