mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-13 12:35:54 +00:00
- Fixed Swift formatting issues in AppConstants.swift and VibeTunnelApp.swift - Fixed Rust formatting in tty-fwd source files - CI should now pass formatting checks
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"
|
|
}
|
|
}
|