mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 11:05:34 +00:00
12 lines
230 B
Kotlin
12 lines
230 B
Kotlin
|
package com.topjohnwu.magisk.di
|
||
|
|
||
|
import android.content.Context
|
||
|
import com.skoumal.teanity.rxbus.RxBus
|
||
|
import org.koin.dsl.module
|
||
|
|
||
|
|
||
|
val applicationModule = module {
|
||
|
single { RxBus() }
|
||
|
single { get<Context>().resources }
|
||
|
}
|