mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 23:33:36 -06:00
13 lines
279 B
Swift
13 lines
279 B
Swift
import Foundation
|
|
|
|
// MARK: - FeatureFlagsConstants
|
|
|
|
/// An enumeration of feature flags.
|
|
///
|
|
enum FeatureFlagsConstants {
|
|
// MARK: Properties
|
|
|
|
/// A flag that enables individual cipher encryption.
|
|
static let enableCipherKeyEncryption = "enableCipherKeyEncryption"
|
|
}
|