mod channel; mod client; mod error; mod types; const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")); pub type HttpClient = reqwest::Client; pub use channel::TapChannel; pub use client::TapClient; pub use error::Error; pub use types::*;