1
 2
 3
 4
 5
 6
 7
 8
 9
10
mod client;
mod reply;
mod routes;
#[cfg(test)]
mod tests;

pub use client::Client;
pub use reply::*;

pub type Fallible<T> = Result<T, anyhow::Error>;