mirror of
https://github.com/WowUp/WowUp.git
synced 2026-01-01 20:37:52 -05:00
11 lines
202 B
C++
11 lines
202 B
C++
|
|
#include <napi.h>
|
|
#include "curse.h"
|
|
|
|
Napi::Object InitAll(Napi::Env env, Napi::Object exports) {
|
|
curse::Init(env, exports);
|
|
return exports;
|
|
}
|
|
|
|
NODE_API_MODULE(NODE_GYP_MODULE_NAME, InitAll)
|