mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-12 18:30:41 -06:00
15 lines
338 B
Swift
15 lines
338 B
Swift
/// A top level route from the initial screen of the app to anywhere in the app.
|
|
///
|
|
public enum AppRoute: Equatable {
|
|
/// A route to the onboarding experience.
|
|
case onboarding
|
|
|
|
/// A route to the tab interface.
|
|
case tab(TabRoute)
|
|
}
|
|
|
|
public enum AppEvent: Equatable {
|
|
/// When the app has started.
|
|
case didStart
|
|
}
|