1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 NS_ASSUME_NONNULL_BEGIN
6 
7 @interface EXSession : NSObject
8 
9 + (instancetype)sharedInstance;
10 
11 - (NSDictionary * _Nullable)session;
12 - (NSString * _Nullable)sessionSecret;
13 - (BOOL)saveSessionToKeychain:(NSDictionary *)session error:(NSError **)error;
14 - (BOOL)deleteSessionFromKeychainWithError:(NSError **)error;
15 
16 @end
17 
18 NS_ASSUME_NONNULL_END
19