forked from GitHub/dbot
9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
var poll = function(dbot) {
|
|
this.name = poll;
|
|
this.ignorable = true;
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return new poll(dbot);
|
|
}
|