Skip to content
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

merge :: Auth API #59

Merged
merged 15 commits into from
Oct 17, 2022
Merged

merge :: Auth API #59

merged 15 commits into from
Oct 17, 2022

Conversation

baekteun
Copy link
Member

개요

Auth 도메인의 API를 작업합니다

작업사항

  • AuthAPI
  • RemoteAuthDataSource
  • AuthRepository
  • Auth Domains UseCases

사용방법

UseCase들을 Component단에서 Inject 받으시구 쓰시면 됩니당

protocol TestDependency: Dependency {
  var signinUseCase: any SigninUseCase { get }
}
final class TestComponent: Component<TestDependency> {
  func makeView() -> some View {
    TestView(viewModel: TestViewModel(signinUseCase: dependency.signinUseCase))
  }
}

@baekteun baekteun added ✨feat 새로운 기능을 추가 할 경우 🧪test 테스트를 추가 할 경우 labels Oct 17, 2022
@baekteun baekteun requested a review from limsaehyun October 17, 2022 05:18
@baekteun baekteun self-assigned this Oct 17, 2022
@baekteun baekteun linked an issue Oct 17, 2022 that may be closed by this pull request
@baekteun baekteun requested a review from sian7563 as a code owner October 17, 2022 05:18
Copy link
Member

@kimdaehee0824 kimdaehee0824 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

진짜로 너무 잘했습니다!

@baekteun baekteun merged commit 95ef1e9 into develop Oct 17, 2022
@baekteun baekteun deleted the 43-auth-api branch October 17, 2022 23:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨feat 새로운 기능을 추가 할 경우 🧪test 테스트를 추가 할 경우
Projects
None yet
Development

Successfully merging this pull request may close these issues.

인증 관련 API 작업
3 participants