mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 07:43:01 -06:00
13 lines
250 B
Swift
13 lines
250 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
|
|
|
|
/// A route to the unlock screen.
|
|
case vaultUnlock
|
|
}
|