throttle_client/
lib.rs

1//! Client for Throttle. Throttle is a http semaphore service, providing semaphores for distributed
2//! systems.
3mod client;
4mod error;
5
6pub use client::Client;
7pub use error::Error;