add caching and refactor code

This commit is contained in:
Henry Hiles 2023-04-07 11:13:19 -04:00
parent ff7710143b
commit 0b3254877b
11 changed files with 122 additions and 28 deletions

View file

@ -0,0 +1,9 @@
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)
}