2024-04-15 20:24:07 -05:00

12 lines
238 B
Swift

import Foundation
/// A route to a specific screen in the tutorial.
///
public enum TutorialRoute: Equatable, Hashable {
/// A route that dismisses the tutorial.
case dismiss
/// A route to the tutorial.
case tutorial
}