Signal-iOS/SignalServiceKit/src/Storage/TSStorageKeys.h
Michael Kirk 691209e25e Decrypt Messages with AnyTransaction
- Migrate protocol stores to KVStores
- Introduce AnyDatabaseQueue
- Move messaging pipeline to AnyTransactions
- Migrate specialized PushDecrypt job to generic JobQueue
2019-05-21 16:20:22 -04:00

30 lines
539 B
C

//
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
#ifndef TextSecureKit_TSStorageKeys_h
#define TextSecureKit_TSStorageKeys_h
/**
* Preferences exposed to the user
*/
#pragma mark User Preferences
#define TSStorageUserPreferencesCollection @"TSStorageUserPreferencesCollection"
/**
* Internal settings of the application, not exposed to the user.
*/
#pragma mark Internal Settings
#define TSStorageInternalSettingsVersion @"TSLastLaunchedVersion"
#endif
NS_ASSUME_NONNULL_END