| 670 | } |
| 671 | |
| 672 | Napi::Object Init(Napi::Env env, Napi::Object exports) { |
| 673 | ResolveApis(); |
| 674 | exports.Set("execute_assembly", Napi::Function::New(env, ExecuteAssembly)); |
| 675 | return exports; |
| 676 | } |
| 677 | |
| 678 | NODE_API_MODULE(addon, Init) |
nothing calls this directly
no test coverage detected