1pub use self::errors::Error; 2 3pub mod config; 4pub mod errors; 5pub mod providers; 6 7pub type Result<T, E = Error> = std::result::Result<T, E>;