Upstream changes (#23)
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user