///
/// ReactNativeSecureKeyAutolinking.mm
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

#import <Foundation/Foundation.h>
#import <NitroModules/HybridObjectRegistry.hpp>
#import "ReactNativeSecureKey-Swift-Cxx-Umbrella.hpp"
#import <type_traits>

#include "HybridReactNativeSecureKeySpecSwift.hpp"

@interface ReactNativeSecureKeyAutolinking : NSObject
@end

@implementation ReactNativeSecureKeyAutolinking

+ (void) load {
  using namespace margelo::nitro;
  using namespace margelo::nitro::silencelaboratories_reactnativesecurekey;

  HybridObjectRegistry::registerHybridObjectConstructor(
    "ReactNativeSecureKey",
    []() -> std::shared_ptr<HybridObject> {
      std::shared_ptr<HybridReactNativeSecureKeySpec> hybridObject = ReactNativeSecureKey::ReactNativeSecureKeyAutolinking::createReactNativeSecureKey();
      return hybridObject;
    }
  );
}

@end
