Skip to content

Commit

Permalink
✨ :: [#144] AuthDomain / WithdrawalUseCase DI
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Aug 2, 2023
1 parent f90a6cf commit 92854b5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,9 @@ public final class AuthDomainAssembly: Assembly {
container.register(CheckIsLoggedInUseCase.self) { resolver in
CheckIsLoggedInUseCaseImpl(authRepository: resolver.resolve(AuthRepository.self)!)
}

container.register(WithdrawalUseCase.self) { resolver in
WithdrawalUseCaseImpl(authRepository: resolver.resolve(AuthRepository.self)!)
}
}
}

0 comments on commit 92854b5

Please sign in to comment.