dbot/modules/imgur/pages.js

15 lines
254 B
JavaScript
Raw Normal View History

2013-04-15 03:10:29 +02:00
var _ = require('underscore')._;
var pages = function(dbot) {
return {
'/imgur/random': function(req, res) {
res.render('imgurr', {
});
}
};
};
exports.fetch = function(dbot) {
return pages(dbot);
};