This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
QWeather/app/src/main/java/com/henryhiles/qweather/di/ManagerModule.kt

9 lines
No EOL
263 B
Kotlin

package com.henryhiles.qweather.di
import com.henryhiles.qweather.presentation.screenmodel.AppearancePreferenceManager
import org.koin.core.module.dsl.singleOf
import org.koin.dsl.module
val managerModule = module {
singleOf(::AppearancePreferenceManager)
}