//! Event subscription functionality for the pricing service
usesuper::service::PricingService;usesuper::types::PricingUpdateEvent;usetokio::sync::broadcast;implPricingService{/// Subscribe to pricing update events
pubfnsubscribe_to_updates(&self)->broadcast::Receiver<PricingUpdateEvent>{self.event_sender.subscribe()}}