summaryrefslogtreecommitdiffhomepage
path: root/src/nodejs/unit-http/addon.cpp
blob: 6ced95381b6b4107557328eabf65c6a84f1b327c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/*
 * 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)