feat: add notification event bus

This commit is contained in:
Kirill
2026-05-18 11:24:01 +05:00
parent dcbcb42acd
commit 09ada62daf
@@ -0,0 +1,7 @@
import { EventEmitter } from 'node:events'
export function createEventBus() {
const bus = new EventEmitter()
bus.setMaxListeners(50)
return bus
}