diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-31 00:42:12 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-31 00:42:12 +0300 |
commit | 61606835448554a7ee9a4431d732e1f2a9318376 (patch) | |
tree | 171841cea56c4fdbd0fd1bb2473e18d3a96cda3a /src/nxt_go.c | |
parent | 3f10b05de995099bf7551b17f5d8d38efe8b4fc5 (diff) | |
download | unit-61606835448554a7ee9a4431d732e1f2a9318376.tar.gz unit-61606835448554a7ee9a4431d732e1f2a9318376.tar.bz2 |
Introduced module compatibility vector.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_go.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nxt_go.c b/src/nxt_go.c index 1c1961b2..28d681ee 100644 --- a/src/nxt_go.c +++ b/src/nxt_go.c @@ -14,6 +14,8 @@ static nxt_int_t nxt_go_run(nxt_task_t *task, nxt_app_rmsg_t *rmsg, nxt_app_wmsg_t *msg); nxt_application_module_t nxt_go_module = { + 0, + NULL, nxt_string("go"), nxt_string("go"), nxt_go_init, |