11 lines
188 B
C++
11 lines
188 B
C++
|
|
#include "node.h"
|
|
|
|
|
|
static Napi::Object Init(Napi::Env env, Napi::Object exports)
|
|
{
|
|
InitMatAPI(env, exports);
|
|
InitProcAPI(env, exports);
|
|
return exports;
|
|
}
|
|
NODE_API_MODULE(addon, Init); |