-
Notifications
You must be signed in to change notification settings - Fork 0
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
🔀 :: [#75] 로그인 버튼 API 연결 #88
Conversation
… 75-connect_auth_api
연동이 성공 실패만 print하고 뭐 없나요 |
var remoteAuthDataSource: RemoteAuthDataSource { | ||
shared { | ||
RemoteAuthDataSource(keychian: keychain) | ||
} | ||
} | ||
|
||
var authRepository: any AuthRepository { | ||
shared { | ||
AuthRepositoryImpl( | ||
remoteAuthDataSource: remoteAuthDataSource, | ||
localAuthDataSource: localAuthDataSource | ||
) | ||
} | ||
} | ||
|
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.
프로토콜 타입 명시에 any가 붙은곳도 있고 아닌곳도있는데 일관성 맞춰주면 좋겠네용
6673e45
to
0fb5c4c
Compare
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.
Needle 적용 - 객체 public - 로그인 기능 구현
으로 3단계정도 Stacked changes로 작업할 수 있을거같은데 다음부턴 쪼개서 작업했으면 좋겠네용
넵!! 다음부터는 쪼개서 작업해보겠습니다!! |
Co-authored-by: baegteun <[email protected]>
…ouel-iOS into 75-connect_auth_api
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.
이거 BaseFeature에 있는건 좀 어색한거같네요
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.
RootFeature의 Extensions으로 빼봤는데 어떤가요...?!
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.
Feature에 있는거 자체가 좀 별로인거같아요
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.
Utils/Extensions/View/View+eraseToAnyView.swift
이런식으로 빼거나 더 레이어 높이려면
Shared/Utils/Extensions/View/View+eraseToAnyView.swift
로 하는게 괜찮을거같네요
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.
수정했어요!
💡 개요
로그인 버튼 API 연결
📃 작업내용
로그인 버튼을 LoginUseCase와 연결했습니다.