aboutsummaryrefslogtreecommitdiff
path: root/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt
blob: 4b0c4a7db9fe324523b1aefbfe0d9ab2de06cafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package ca.allanwang.kau.sample

import ca.allanwang.kau.kpref.KPrefFactory
import ca.allanwang.kau.kpref.KPrefFactoryInMemory
import org.koin.dsl.module

object SampleTestApp {
    fun prefFactoryModule() = module {
        single<KPrefFactory> {
            KPrefFactoryInMemory
        }
    }
}