Navigation+Injection.swift 252 B

12345678910111213141516
  1. //
  2. // Navigation+Injection.swift
  3. // TUIRoomKit
  4. //
  5. // Created by aby on 2024/6/20.
  6. //
  7. import Factory
  8. extension Container {
  9. var navigation: Factory<Route> {
  10. Factory(self) {
  11. ConferenceRouter()
  12. }
  13. .shared
  14. }
  15. }