Created
July 1, 2011 18:07
-
-
Save johnmcaliley/1059092 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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