Skip to content

Instantly share code, notes, and snippets.

@johnmcaliley
Created July 1, 2011 18:07
Show Gist options
  • Save johnmcaliley/1059092 to your computer and use it in GitHub Desktop.
Save johnmcaliley/1059092 to your computer and use it in GitHub Desktop.
exports.index = function(req, res){
res.send('product index');
};
exports.new = function(req, res){
res.send('new product');
};
exports.create = function(req, res){
res.send('create product');
};
exports.show = function(req, res){
res.send('show product');
};
exports.edit = function(req, res){
res.send('edit product');
};
exports.update = function(req, res){
res.send('update product');
};
exports.destroy = function(req, res){
res.send('destroy product');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment