Created
July 1, 2011 18:07
-
-
Save johnmcaliley/1059091 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('merchant index'); | |
}; | |
exports.new = function(req, res){ | |
res.send('new merchant'); | |
}; | |
exports.create = function(req, res){ | |
res.send('create merchant'); | |
}; | |
exports.show = function(req, res){ | |
res.send('show merchant'); | |
}; | |
exports.edit = function(req, res){ | |
res.send('edit merchant'); | |
}; | |
exports.update = function(req, res){ | |
res.send('update merchant'); | |
}; | |
exports.destroy = function(req, res){ | |
res.send('destroy merchant'); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment