annotate 1__Development/6__Website/POPExpressServer/routes/routeHdlrs.js @ 7:20a1407463a0

sort of working with view sets -- does restore, (not tested) have to chg Display to handle view sets
author Sean Halle <seanhalle@yahoo.com>
date Thu, 07 Aug 2014 00:10:50 -0700
parents
children
rev   line source
seanhalle@5 1 /* These are the functions that handle the various routes
seanhalle@5 2 */
seanhalle@5 3 exports.index = function(req, res){
seanhalle@5 4 res.render('index', { title: 'Express' });
seanhalle@5 5 };
seanhalle@5 6
seanhalle@5 7 var temp = require('./foobar');
seanhalle@5 8 exports.foobar = temp.foobar;
seanhalle@5 9
seanhalle@5 10 var temp = require('./saveJSON');
seanhalle@5 11 exports.saveJSON = temp.saveJSON;