Skip to content

Commit

Permalink
Se borro la var employeRoutes innecesario
Browse files Browse the repository at this point in the history
  • Loading branch information
vickvasquez committed Jan 6, 2015
1 parent 82d9540 commit 82cd27a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ app.get('/', function (req, res) {
});

mongoose.connect('mongodb://localhost:27017/employees');
var employeeRoutes = require('./routes/employee.js')(app);
//var employeeRoutes = require('./routes/employee.js')(app);
require('./routes/employee.js')(app);


var port = 3000;
Expand Down

0 comments on commit 82cd27a

Please sign in to comment.