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/// Service interfaces and traits
10pub mod interfaces;
11/// Rate limiter module for API request throttling
12pub mod rate_limiter;