13 lines
197 B
JavaScript
13 lines
197 B
JavaScript
|
module.exports = (Plugin, Api, Vendor) => {
|
||
|
|
||
|
return class extends Plugin {
|
||
|
onStart() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
onStop() {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|