File tree Expand file tree Collapse file tree
feature/profile/data/src/commonMain/kotlin/zed/rainxch/profile/data/repository Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,10 +2,12 @@ package zed.rainxch.profile.data.repository
22
33import kotlinx.coroutines.Dispatchers
44import kotlinx.coroutines.flow.Flow
5+ import kotlinx.coroutines.flow.flowOf
56import kotlinx.coroutines.flow.flowOn
67import zed.rainxch.core.data.data_source.TokenStore
78import zed.rainxch.core.domain.repository.AuthenticationState
89import zed.rainxch.feature.profile.data.BuildKonfig
10+ import zed.rainxch.profile.domain.model.UserProfile
911import zed.rainxch.profile.domain.repository.ProfileRepository
1012
1113class ProfileRepositoryImpl (
@@ -17,6 +19,10 @@ class ProfileRepositoryImpl(
1719 .isUserLoggedIn()
1820 .flowOn(Dispatchers .IO )
1921
22+ override fun getUser (): Flow <UserProfile ?> {
23+ return flowOf(null )
24+ }
25+
2026 override fun getVersionName (): String {
2127 return BuildKonfig .VERSION_NAME
2228 }
You can’t perform that action at this time.
0 commit comments