forked from melod1n/fast-messenger
Upstream changes (#23)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
</manifest>
|
||||
@@ -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