mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
14 lines
316 B
C++
14 lines
316 B
C++
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
// Licensed under the MIT License.
|
||
|
|
|
||
|
|
#include <napi.h>
|
||
|
|
|
||
|
|
#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)
|