ig_client/application/mod.rs
1/// Authentication and session management
2pub mod auth;
3/// Main client implementation
4pub mod client;
5/// Application configuration module
6pub mod config;
7/// Dynamic market streamer with thread-safe subscription management
8pub mod dynamic_streamer;
9/// HTTP client and request execution with rate limiting and finite retry
10pub mod http;
11/// Service interfaces and traits
12pub mod interfaces;
13/// Market navigation hierarchy traversal helpers
14pub mod market_hierarchy;
15/// Rate limiter module for API request throttling
16pub mod rate_limiter;
17/// Adapters from Lightstreamer `ItemUpdate` to presentation-layer DTOs
18pub mod streaming_convert;