mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-12 12:25:53 +00:00
13 lines
395 B
Swift
13 lines
395 B
Swift
import Foundation
|
|
|
|
/// Central location for app-wide constants and configuration values
|
|
enum AppConstants {
|
|
/// Current version of the welcome dialog
|
|
/// Increment this when significant changes require re-showing the welcome flow
|
|
static let currentWelcomeVersion = 3
|
|
|
|
/// UserDefaults keys
|
|
enum UserDefaultsKeys {
|
|
static let welcomeVersion = "welcomeVersion"
|
|
}
|
|
}
|