1//! Bandwidth throttling module 2//! 3//! This module provides bandwidth rate limiting using a token bucket algorithm. 4 5mod config; 6mod limiter; 7mod token_bucket; 8 9pub use config::ThrottleConfig; 10pub use limiter::ThrottleLimiter; 11pub use token_bucket::TokenBucket;