1 2 3 4 5 6 7
pub mod auth; pub mod client; mod error; pub mod model; pub mod query; pub type Result<T> = std::result::Result<T, error::Error>;