blob: 52b179b8c00cb7dceabc9dfba3f9e2465555a68d [file] [log] [blame]
//! Limit the rate at which requests are processed.
mod layer;
#[allow(clippy::module_inception)]
mod rate;
mod service;
pub use self::{layer::RateLimitLayer, rate::Rate, service::RateLimit};