ios/AuthenticatorShared/UI/Auth/AuthRoute.swift
2024-04-24 23:14:35 -05:00

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
}