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

12 lines
256 B
Swift

// MARK: - AuthEvent
/// An event to be handled by a Router tasked with producing `AuthRoute`s.
///
public enum AuthEvent: Equatable {
/// When the app starts
case didStart
/// When the user successfully authorized
case didCompleteAuth
}