kulmapaikka-ircbot/plugins/base.js

19 lines
212 B
JavaScript
Raw Normal View History

class BasePlugin {
constructor(config) {
this.name = 'BasePlugin';
2018-04-29 17:37:07 +03:00
this.config = config;
}
2018-04-29 17:37:07 +03:00
test(input) {
2018-04-29 17:37:07 +03:00
}
result(input) {
2018-04-29 17:37:07 +03:00
}
}
// export default BasePlugin;
module.exports = BasePlugin;