tower_api_client/lib.rs
1//! tower_api_client is a library for building strongly typed API clients, with built-in capabilites
2//! for authentication, various request and response types and pagination.
3mod client;
4mod error;
5pub mod pagination;
6mod request;
7
8pub use client::{Client, ServiceExt};
9pub use error::Error;
10pub use hyper::header;
11pub use hyper::Method;
12pub use hyper::StatusCode;
13pub use request::*;