1 //! Limit the rate at which requests are processed.
2 
3 mod layer;
4 #[allow(clippy::module_inception)]
5 mod rate;
6 mod service;
7 
8 pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};
9