mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
15 lines
392 B
Swift
15 lines
392 B
Swift
import UIKit
|
|
|
|
// MARK: - NavigatorBuilderModule
|
|
|
|
/// An object that builds navigators for the application.
|
|
///
|
|
@MainActor
|
|
public protocol NavigatorBuilderModule: AnyObject {
|
|
/// Builds a navigation controller for use in the application.
|
|
///
|
|
/// - Returns: A navigation controller for use in the application.
|
|
///
|
|
func makeNavigationController() -> UINavigationController
|
|
}
|