mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 07:43:01 -06:00
12 lines
256 B
Swift
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
|
|
}
|