tower_api_client/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! tower_api_client is a library for building strongly typed API clients, with built-in capabilites
//! for authentication, various request and response types and pagination.
mod client;
mod error;
pub mod pagination;
mod request;

pub use client::{Client, ServiceExt};
pub use error::Error;
pub use hyper::header;
pub use hyper::Method;
pub use hyper::StatusCode;
pub use request::*;