mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
16 lines
441 B
Swift
16 lines
441 B
Swift
import Foundation
|
|
|
|
#if DEBUG
|
|
public let isDebug = true
|
|
#else
|
|
public let isDebug = false
|
|
#endif
|
|
|
|
public enum FeatureFlag {
|
|
public static let enableSnoozeFromShareExtension = false
|
|
public static let enableRemindersFromShareExtension = false
|
|
public static let enableShareButton = false
|
|
public static let enableSnooze = false
|
|
public static let enableGridCardsOnPhone = false
|
|
public static let enableUltraRealisticVoices = true
|
|
}
|