11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
const NetProxierModule = require("./");
|
|
|
|
module.exports = class ExampleMdoule extends NetProxierModule {
|
|
constructor () {
|
|
super();
|
|
this.operators.push(new this.statics.Operator("testi", () => true, () => {
|
|
console.log("BEEP");
|
|
}));
|
|
}
|
|
};
|