Files
sing-box-for-apple/Library/Shared/Variant.swift
T
2023-07-29 09:44:31 +08:00

18 lines
409 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 = "SFI"
#elseif os(macOS)
public static let applicationName = "SFM"
#elseif os(tvOS)
public static let applicationName = "SFT"
#endif
}