ios/AuthenticatorShared/UI/Auth/AuthRoute.swift
2024-04-02 15:56:32 -05:00

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
}