Upstream changes (#23)

This commit is contained in:
2024-07-11 02:12:32 +03:00
committed by GitHub
parent 8a6378f509
commit 3503ecffab
906 changed files with 23577 additions and 24115 deletions
@@ -0,0 +1,12 @@
package com.meloda.app.fast.profile
import androidx.lifecycle.ViewModel
interface ProfileViewModel {
}
class ProfileViewModelImpl(
) : ViewModel(), ProfileViewModel {
}
@@ -0,0 +1,9 @@
package com.meloda.app.fast.profile.di
import com.meloda.app.fast.profile.ProfileViewModelImpl
import org.koin.androidx.viewmodel.dsl.viewModelOf
import org.koin.dsl.module
val profileModule = module {
viewModelOf(::ProfileViewModelImpl)
}