//! Real-time streaming example disabled - needs refactoring //! //! This example referenced proto types (Order, OrderUpdate, MetricValue, StreamOrderUpdatesRequest) //! and TliClient that are not available in current implementation. //! //! To re-enable: //! 1. Check tli::proto::trading for actual available types //! 2. Use correct client types from tli::client modules //! 3. Update streaming API calls to match current implementation //! 4. Add missing std::time::UNIX_EPOCH import #![allow(unused_crate_dependencies)] fn main() { println!( "Real-time streaming example disabled - needs refactoring for current proto definitions" ); }