mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 22:39:26 +01:00
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
var _ = require('underscore')._;
|
|
|
|
var pages = function(dbot) {
|
|
return {
|
|
'/imgur/random': function(req, res) {
|
|
res.render('imgurr', {
|
|
});
|
|
}
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return pages(dbot);
|
|
};
|