1 // Copyright © 2015 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 // Protocol that must be implemented by Kernel Services that want to be registered in Module Registry
6 
7 @protocol EXKernelService <NSObject>
8 
9 + (instancetype)sharedInstance;
10 + (NSString *)name;
11 
12 @end
13