Update server.js

This commit is contained in:
Richter 2019-03-07 16:16:35 +01:00
parent eb8bf93f0f
commit 8fb223ed92

View File

@ -23,7 +23,7 @@ app.use(bodyParser.urlencoded({
// Scripte einbinden
var app_cfg = require('./server/app_cfg.js');
var sql_cfg = require('./server/sql_cfg')(bcrypt, app_cfg);
var sql = require('./server/sql_qry')(sql_cfg)
var sql = require('./server/sql_qry')(sql_cfg, async)
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);