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