pulzr 0.3.2

A http load testing tool for performance testing.
Documentation
#![allow(clippy::uninlined_format_args)]

// Core modules
pub mod auth;
pub mod cli;
pub mod config;
pub mod core;
pub mod distributed;
pub mod integrations;
pub mod metrics;
pub mod network;
pub mod ui;
pub mod utils;

// Re-export commonly used types for backward compatibility
pub use auth::*;
pub use config::*;
pub use core::*;
pub use distributed::*;
pub use integrations::*;
pub use metrics::*;
pub use network::*;
pub use ui::*;
pub use utils::*;