Skip to content

Commit

Permalink
REFACT :: [#326] SceneDelegate 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cyj513 committed May 15, 2024
1 parent 17de4b4 commit 316c69d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate {

window = UIWindow(windowScene: windowScene)
let useCase = DefaultSelfCareUseCase(repository: SelfCareRepository(networkService: SelfCareService()))
let viewModel = SelfCareMyRoutineEditViewModel(useCase: useCase)
let viewController = SelfCareMyRoutineEditViewController(viewModel)
let viewModel = SelfCareMyRoutineViewModel(useCase: useCase)
let viewController = SelfCareMyRoutineViewController(viewModel)
window?.configure(withRootViewController: viewController)
window?.makeKeyAndVisible()
}
Expand Down

0 comments on commit 316c69d

Please sign in to comment.