2017-03-12 18:36:32 +02:00
|
|
|
|
|
|
|
class BasePlugin {
|
2019-08-13 19:37:22 +03:00
|
|
|
constructor (config) {
|
|
|
|
this.name = 'BasePlugin'
|
|
|
|
this.config = config
|
2017-03-12 18:36:32 +02:00
|
|
|
}
|
2018-04-29 17:37:07 +03:00
|
|
|
|
2019-08-13 19:37:22 +03:00
|
|
|
test (input) {
|
2018-04-29 17:37:07 +03:00
|
|
|
|
2017-03-12 18:36:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-13 19:37:22 +03:00
|
|
|
result (input) {
|
2018-04-29 17:37:07 +03:00
|
|
|
|
2017-03-12 18:36:32 +02:00
|
|
|
}
|
2019-11-20 20:28:11 +02:00
|
|
|
|
|
|
|
help () {
|
|
|
|
return 'No documentation'
|
|
|
|
}
|
2017-03-12 18:36:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// export default BasePlugin;
|
2019-08-13 19:37:22 +03:00
|
|
|
module.exports = BasePlugin
|