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