Delete routes files

docker
sundowndev 2018-08-30 14:19:27 +02:00
parent 2a33385f4d
commit c6ffd03ef9
2 changed files with 0 additions and 11 deletions

View File

@ -1,5 +0,0 @@
const postsRoutes = require('./posts');
module.exports = function(app, db) {
postsRoutes(app);
};

View File

@ -1,6 +0,0 @@
module.exports = function(app) {
app.get('/posts', (req, res) => {
// You'll create your note here.
res.send('Hello')
});
}