1mod channel;
2mod client;
3mod error;
4mod types;
5
6const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"));
7
8pub type HttpClient = reqwest::Client;
9
10pub use channel::TapChannel;
11pub use client::TapClient;
12pub use error::Error;
13pub use types::*;