20 lines
415 B
Objective-C
20 lines
415 B
Objective-C
// Copyright 2015-present 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UMCore/UMSingletonModule.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol EXSessionHandler
|
|
|
|
- (void)invokeCompletionHandlerForSessionIdentifier:(NSString *)identifier;
|
|
|
|
@end
|
|
|
|
@interface EXSessionHandler : UMSingletonModule <UIApplicationDelegate, EXSessionHandler>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|