logging terminado

This commit is contained in:
DanielRamirezGe
2019-11-28 17:49:57 -06:00
parent 9220adf338
commit b4ebeef83a
7 changed files with 223 additions and 1 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ app.get('/', function(req, res) {
app.use(cors());
app.use(express.json()) // for parsing application/json
app.use(express.urlencoded({ extended: true }))
app.use(require('./index.js'))
app.use(require('./routes/index.js'))
app.listen(3000, function() {
console.log('Example app listening on port 3000!');
});