Register the express app to allow registration of urls.

This commit is contained in:
Michael Teeuw
2016-04-05 14:22:34 +02:00
parent f1dad4c9fb
commit 5420314784
3 changed files with 31 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ var Server = function(config, callback) {
});
if (typeof callback === 'function') {
callback(io);
callback(app, io);
}
};