limit: rate::error should be private (#265)

This commit is contained in:
Carl Lerche 2019-04-23 12:45:34 -07:00 committed by GitHub
parent 484cbe7556
commit 4cb450fa1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
//! Limit the rate at which requests are processed.
pub mod error;
mod error;
pub mod future;
mod layer;
mod rate;