Skip to content

Commit

Permalink
[Chore] #181 - Add comments on reflection of modification
Browse files Browse the repository at this point in the history
  • Loading branch information
clxxrlove committed Dec 5, 2024
1 parent 175cc6a commit edee5fd
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Heim/Application/Application/Source/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edee5fd

Please sign in to comment.