mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 01:13:26 -05: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
|
|
}
|