1// Copyright 2015-present 650 Industries. All rights reserved. 2 3#import "EXScopedBridgeModule.h" 4 5@implementation EXScopedBridgeModule 6 7+ (NSString *)moduleName 8{ 9 NSAssert(NO, @"EXScopedBridgeModule is abstract, you should only export subclasses to the bridge."); 10 return @"ExponentScopedBridgeModule"; 11} 12 13- (instancetype)initWithExperienceId:(NSString *)experienceId kernelServiceDelegate:(id)kernelServiceInstance params:(NSDictionary *)params 14{ 15 if (self = [super init]) { 16 _experienceId = experienceId; 17 } 18 return self; 19} 20 21- (instancetype)initWithExperienceId:(NSString *)experienceId kernelServiceDelegates:(NSDictionary *)kernelServiceInstances params:(NSDictionary *)params 22{ 23 if (self = [super init]) { 24 _experienceId = experienceId; 25 } 26 return self; 27} 28 29@end 30