Skip to content

Commit 80c80db

Browse files
committed
Remove 'plugins' from module parameters
1 parent 7036b74 commit 80c80db

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

server/hyperflow-server.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
** HyperFlow engine
3-
** Author: Bartosz Balis (2012-2019)
3+
** Author: Bartosz Balis (2012-2020)
44
**
55
** HyperFlow server implementing the REST API for HyperFlow workflows.
66
*/
@@ -555,9 +555,8 @@ function clone(obj) {
555555
console.log("HyperFlow server. App factory URI: http://%s:%d/apps", server.address().address, server.address().port);
556556
}*/
557557

558-
module.exports = function(rcl_, wflib_, plugins_) {
558+
module.exports = function(rcl_, wflib_) {
559559
rcl = rcl_;
560560
wflib = wflib_;
561-
plugins = plugins_;
562561
return server;
563-
}
562+
}

0 commit comments

Comments
 (0)