Files
UUVPN/iOS-SwiftUI-Code/Library/Shared/Variant.swift
T
zeus 7900feced4 1
1
2025-09-21 19:39:45 +08:00

18 lines
415 B
Swift

import Foundation
public enum Variant {
#if os(macOS)
public static var useSystemExtension = false
#else
public static let useSystemExtension = false
#endif
#if os(iOS)
public static let applicationName = "UUVPN"
#elseif os(macOS)
public static let applicationName = "UUVPN"
#elseif os(tvOS)
public static let applicationName = "UUVPN"
#endif
}