18 lines
415 B
Swift
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
|
|
}
|