1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 07:24:16 +00:00

13 lines
214 B
JavaScript

import EventEmitter from "@foxify/events"
export default class SSEChannel {
constructor(params) {
this.id = params.id
}
eventBus = new EventEmitter()
clients = new Set()
cache = []
}