10 lines
188 B
Swift
10 lines
188 B
Swift
import Foundation
|
|
|
|
public enum Variant {
|
|
#if os(macOS)
|
|
public static var useSystemExtension = false
|
|
#else
|
|
public static let useSystemExtension = false
|
|
#endif
|
|
}
|