1 2 3 4 5 6 7 8 9 10 11
mod client; mod error; mod secret; mod structs; pub type Result<T> = std::result::Result<T, Error>; pub use client::*; pub use error::*; pub use secret::*; pub use structs::*;