learning_ai_common_plat/services/platform-service/src/lib/event-bus.ts

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();