2018-05-21 17:41:41 +02:00
|
|
|
module.exports = (Plugin, Api, Vendor) =>
|
2018-01-20 18:48:27 +01:00
|
|
|
|
2018-05-21 17:41:41 +02:00
|
|
|
const { $ } = Vendor;
|
2018-01-20 18:48:27 +01:00
|
|
|
const { Events } = Api;
|
|
|
|
|
|
|
|
const test = 'Testing';
|
|
|
|
|
|
|
|
return class extends Plugin {
|
|
|
|
test() {
|
|
|
|
return test;
|
|
|
|
}
|
|
|
|
|
|
|
|
onStart() {
|
|
|
|
console.log('On Start!');
|
2018-01-23 14:19:55 +01:00
|
|
|
return true;
|
2018-01-20 18:48:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 18:55:10 +01:00
|
|
|
};
|