diff --git a/app.js b/app.js index a7b776e..557e7ea 100644 --- a/app.js +++ b/app.js @@ -53,7 +53,7 @@ function initApp (config, callback) { // Load routes require('./route/index')(app); require('./route/new')(app); - require('./route/task')(app); + require('./route/task/index')(app); require('./route/task/delete')(app); // Error handling diff --git a/route/task.js b/route/task/index.js similarity index 100% rename from route/task.js rename to route/task/index.js diff --git a/view/task.html b/view/task/index.html similarity index 100% rename from view/task.html rename to view/task/index.html