1 // Copyright © 2015 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 NS_ASSUME_NONNULL_BEGIN
6 
7 @interface EXSingletonModule : NSObject
8 
9 + (const NSString *)name;
10 
11 - (const NSInteger)priority;
12 
13 @end
14 
15 NS_ASSUME_NONNULL_END
16