mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 04:34:55 -06:00
11 lines
210 B
Swift
11 lines
210 B
Swift
import Foundation
|
|
|
|
// MARK: - AuthRoute
|
|
|
|
/// A route to a specific screen in the authentication flow.
|
|
public enum AuthRoute: Equatable {
|
|
/// Dismisses the auth flow.
|
|
case complete
|
|
case onboarding
|
|
}
|