Reconfigure module
This commit is contained in:
parent
9e543989b8
commit
24470fe6f2
@ -1,4 +1,6 @@
|
||||
export class State {
|
||||
module.exports = {
|
||||
// State class
|
||||
State: class State {
|
||||
constructor(config) {
|
||||
this.igniter = {
|
||||
on: false,
|
||||
@ -38,9 +40,9 @@ export class State {
|
||||
};
|
||||
console.log(`State initialized.`)
|
||||
};
|
||||
};
|
||||
|
||||
export class Communicator {
|
||||
},
|
||||
// Communicator class
|
||||
Communicator: class Communicator {
|
||||
constructor(state) {
|
||||
this.publisher = state.publisher;
|
||||
return this;
|
||||
@ -90,4 +92,5 @@ export class Communicator {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user