paper-client 1.11.0

The Rust PaperCache client.
Documentation
/*
 * Copyright (c) Kia Shakiba
 *
 * This source code is licensed under the GNU AGPLv3 license found in the
 * LICENSE file in the root directory of this source tree.
 */

pub mod client;
pub use crate::client::*;

#[cfg(feature = "tokio")]
pub mod async_client;
#[cfg(feature = "tokio")]
pub use crate::async_client::*;

pub mod error;
pub use error::PaperClientError;

pub mod pool;
pub use crate::pool::*;

#[cfg(feature = "tokio")]
pub mod async_pool;
#[cfg(feature = "tokio")]
pub use crate::async_pool::*;

pub mod policy;
pub use crate::policy::*;

pub mod status;
pub use crate::status::*;

mod value;
pub use crate::value::*;

mod addr;
mod arg;
mod command;