kulmapaikka-ircbot/plugins/base.js

23 lines
259 B
JavaScript
Raw Normal View History

class BasePlugin {
constructor (config) {
this.name = 'BasePlugin'
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
}
2019-11-20 20:28:11 +02:00
help () {
return 'No documentation'
}
}
// export default BasePlugin;
module.exports = BasePlugin