Initial commit

This commit is contained in:
Rowan Manning
2013-09-13 16:49:19 +01:00
commit 433aecd972
10 changed files with 148 additions and 0 deletions

10
route/new.js Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
module.exports = route;
// Route definition
function route (app) {
app.express.get('/new', function (req, res) {
res.send('Create a task');
});
}