mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
- Move all macOS-specific code from root to mac/ directory - Move app icons and assets to dedicated assets/ directory - Update GitHub workflows for new structure - Consolidate documentation files - Clean up root directory for better multi-platform organization
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 = 2
|
|
|
|
/// UserDefaults keys
|
|
enum UserDefaultsKeys {
|
|
static let welcomeVersion = "welcomeVersion"
|
|
}
|
|
}
|