1 2 3 4 5 6 7 8 9 10 11
//! Official Rust SDK for the Parcel Wing API. mod client; mod error; mod http; pub mod resources; pub mod types; pub use client::{Client, ClientBuilder, ClientOptions}; pub use error::{ApiError, Error, ErrorPayload, ErrorType}; pub use types::*;