-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
프로필 만들기 API 연결 #177
프로필 만들기 API 연결 #177
Conversation
Test Results3 tests 3 ✅ 0s ⏱️ Results for commit 6b212dc. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
손이 빨라서 부럽다,,, 고생하셨습니다!
// data source | ||
private val clubDataSource: ClubDataSource = ClubDataSourceImpl(service = clubService) | ||
private val localDataSource: LocalDataSource = LocalDataSourceImpl(localModule = localModule) | ||
private val kakaoLoginDataSource: KakaoLoginDataSource = KakaoLoginDataSourceImpl() | ||
private val memberDataSource: MemberDataSource = MemberDataSourceImpl(service = memberService) | ||
|
||
// repository | ||
private val clubRepository: ClubRepository = ClubRepositoryImpl(source = clubDataSource) | ||
private val localRepository: LocalRepository = LocalRepositoryImpl(source = localDataSource) | ||
private val kakaoLoginRepository: KakaoLoginRepository = | ||
KakaoLoginRepositoryImpl(dataSource = kakaoLoginDataSource) | ||
private val memberRepository: MemberRepository = MemberRepositoryImpl(source = memberDataSource) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
너무 과도하게 많아질 것 같아서, dataSourceModule과 RepositoryModule을 나눠도 좋을 것 같습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다음에 같이 나누어요~~
import com.woowacourse.friendogly.remote.model.response.MemberResponse | ||
|
||
fun MemberResponse.toData(): MemberDto { | ||
Log.d("ttt this", this.toString()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인용 로그는 지우는게 좋을 것 같아요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다 !
이슈
개발 사항