From edee5fd374afdf2b27822f76d1fd93c77bdd33d8 Mon Sep 17 00:00:00 2001 From: Jiyong Date: Fri, 6 Dec 2024 00:29:22 +0900 Subject: [PATCH] [Chore] #181 - Add comments on reflection of modification --- .../Application/Source/SceneDelegate.swift | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Heim/Application/Application/Source/SceneDelegate.swift b/Heim/Application/Application/Source/SceneDelegate.swift index c404760..68fde44 100644 --- a/Heim/Application/Application/Source/SceneDelegate.swift +++ b/Heim/Application/Application/Source/SceneDelegate.swift @@ -130,8 +130,15 @@ private extension SceneDelegate { return GeminiGenerativeAIRepository(networkProvider: networkProvider) } -// DIContainer.shared.register(type: MusicRepository.self) { _ in -// return DefaultMusicRepository() +// DIContainer.shared.register(type: AVPlayerManager.self) { _ in +// return DefaultAVPlayerManager() +// } +// +// DIContainer.shared.register(type: MusicRepository.self) { container in +// guard let avPlayerManager = container.resolve(type: AVPlayerManager.self) else { +// return +// } +// return DefaultMusicRepository(avPlayerManager: avPlayerManager) // } DIContainer.shared.register(type: SpotifyRepository.self) { container in