Files
nginx-unit/src/nodejs/unit-http/addon.cpp
2018-10-03 17:50:03 +03:00

16 lines
174 B
C++

/*
* Copyright (C) NGINX, Inc.
*/
#include "unit.h"
napi_value
Init(napi_env env, napi_value exports)
{
return Unit::init(env, exports);
}
NAPI_MODULE(Unit, Init)