
#import "RNColocator.h"
#import <React/RCTLog.h>

@implementation RNColocator

- (dispatch_queue_t)methodQueue
{
    return dispatch_get_main_queue();
}
RCT_EXPORT_MODULE()

RCT_EXPORT_METHOD(init:(NSString *)endpoint location:(NSString *)apiKey)
{
  RCTLogInfo(@"init/2 called with %@ and %@", endpoint, apiKey);
}

@end
