xref: /unit/src/nodejs/unit-http/addon.cpp (revision 802:fb9a6392d04a)
1 
2 /*
3  * Copyright (C) NGINX, Inc.
4  */
5 
6 #include "unit.h"
7 
8 
9 napi_value
Init(napi_env env,napi_value exports)10 Init(napi_env env, napi_value exports)
11 {
12     return Unit::init(env, exports);
13 }
14 
15 NAPI_MODULE(Unit, Init)
16