Barretenberg
The ZK-SNARK library at the core of Aztec
Loading...
Searching...
No Matches
init_module.cpp
Go to the documentation of this file.
4#include "napi.h"
5
6Napi::Object Init(Napi::Env env, Napi::Object exports)
7{
8 exports.Set(Napi::String::New(env, "LMDBStore"), bb::nodejs::lmdb_store::LMDBStoreWrapper::get_class(env));
9 exports.Set(Napi::String::New(env, "MsgpackClient"),
11 exports.Set(Napi::String::New(env, "MsgpackClientAsync"),
13 return exports;
14}
15
16// NOLINTNEXTLINE
17NODE_API_MODULE(addon, Init)
static Napi::Function get_class(Napi::Env env)
static Napi::Function get_class(Napi::Env env)
Napi::Object Init(Napi::Env env, Napi::Object exports)