// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include #include "inference_session_wrap.h" Napi::Object InitAll(Napi::Env env, Napi::Object exports) { InferenceSessionWrap::Init(env, exports); return exports; } NODE_API_MODULE(onnxruntime, InitAll)