Rename main koin module

This commit is contained in:
Shinokuni 2024-07-25 13:25:56 +02:00
parent e721463f9c
commit ad7929f444
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ import org.koin.android.ext.koin.androidContext
import org.koin.core.parameter.parametersOf
import org.koin.dsl.module
val composeAppModule = module {
val appModule = module {
factory { TimelineScreenModel(get(), get(), get()) }

View File

@ -24,7 +24,7 @@ open class ReadropsApp : Application(), KoinComponent, ImageLoaderFactory {
androidLogger(Level.ERROR)
androidContext(this@ReadropsApp)
modules(apiModule, dbModule, composeAppModule)
modules(apiModule, dbModule, appModule)
}
createNotificationChannels()