udp zu routes hinzugefügt

This commit is contained in:
Robert Richter 2019-05-13 21:46:53 +02:00
parent 278f7258b7
commit 7ab105a575

View File

@ -33,7 +33,7 @@ var sql = require('./server/sql_qry')(sql_cfg, async, app_cfg)
var waip_io = require('./server/waip_io')(io, sql, async, app_cfg);
var udp = require('./server/udp')(app_cfg, waip_io, sql);
var auth = require('./server/auth')(app, app_cfg, sql_cfg, async, bcrypt, passport, io);
var routes = require('./server/routing')(app, sql, app_cfg, passport, auth);
var routes = require('./server/routing')(app, sql, app_cfg, passport, auth, udp);
// Server starten
webserver.listen(app_cfg.global.https_port, function() {