Skip to content

Instantly share code, notes, and snippets.

@Pitbi
Created February 5, 2013 16:21
Show Gist options
  • Save Pitbi/4715519 to your computer and use it in GitHub Desktop.
Save Pitbi/4715519 to your computer and use it in GitHub Desktop.
var HomeController = {};
HomeController.show = function (req, res) {
res.render('home/show');
};
module.exports = HomeController;
var HomeController = require('./controllers/home');
server.get('/', function(req, res) { HomeController.show(req, res) });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment