dbot/modules/poll/poll.js

9 lines
143 B
JavaScript
Raw Normal View History

var poll = function(dbot) {
2013-01-15 16:21:43 +00:00
this.name = poll;
this.ignorable = true;
};
exports.fetch = function(dbot) {
2013-01-15 16:21:43 +00:00
return new poll(dbot);
}