#![allow(clippy::module_inception)] // Module name matches parent for re-export patterns //! Load Testing Library //! //! Provides reusable components for load testing: //! - Trading clients with JWT authentication //! - Metrics collection and reporting //! - Test scenarios pub mod clients; pub mod metrics; pub mod scenarios; pub use clients::TradingClient; pub use metrics::{LoadTestMetrics, LoadTestReport};