#include <jni.h>
#include "react-native-memcachejsi.h"

extern "C"
JNIEXPORT void JNICALL
Java_com_reactnativememcachejsi_MemcachejsiModule_nativeInstall(JNIEnv *env, jobject thiz, jlong jsi) {
    auto runtime = reinterpret_cast<facebook::jsi::Runtime *>(jsi);
    if (runtime)
    memcachejsi::install(*runtime);
}
