remove connect and cookie dependency

This commit is contained in:
José F. Romaniello
2013-06-05 08:38:33 -03:00
parent 9fea831500
commit 04ea36fdd3
4 changed files with 39 additions and 22 deletions

View File

@ -24,8 +24,10 @@ exports.start = function (options, callback) {
if(typeof options == 'function'){
callback = options;
options = {};
}
options = {
};
}
options.cookieParser = express.cookieParser;
var app = express();
app.configure(function(){