1 // Copyright © 2018 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 #import <ExpoModulesCore/EXModuleRegistry.h>
6 
7 // Implement this protocol in any module registered
8 // in EXModuleRegistry to receive an instance of the module registry
9 // when it's initialized (ready to provide references to other modules).
10 
11 @protocol EXModuleRegistryConsumer <NSObject>
12 
13 - (void)setModuleRegistry:(nonnull EXModuleRegistry *)moduleRegistry;
14 
15 @end
16