let packer add the headers

This commit is contained in:
Lewis Moten
2024-05-14 16:08:23 -04:00
parent f32380a301
commit da7feaf09e
6 changed files with 124 additions and 98 deletions

View File

@@ -5,7 +5,6 @@ class Dispatcher {
this.domain = domain;
}
emit = (eventName, ...args) => {
// console.log(`${this.domain}.${eventName}`, ...args);
if(!this.LISTENERS[eventName]) return;
this.LISTENERS[eventName].forEach(callback => callback(...args));
}