Skip to main content

postrust_proxy/ratelimit/
mod.rs

1//! Rate limiting for the proxy.
2
3mod limiter;
4mod token_bucket;
5
6pub use limiter::{RateLimitKey, RateLimiter};
7pub use token_bucket::TokenBucket;