8 lines
358 B
TypeScript
8 lines
358 B
TypeScript
import { EventBus } from '@bytelyst/events';
|
|
|
|
// ── Singleton Event Bus ──────────────────────────────────────
|
|
// Single instance shared across all modules in platform-service.
|
|
// Import this wherever you need to emit or subscribe to events.
|
|
|
|
export const bus = new EventBus();
|