- introduce a new error module for standardized error handling - export the Error type for external use
17 lines
413 B
Rust
17 lines
413 B
Rust
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
#![warn(missing_docs)]
|
|
#![cfg_attr(docsrs, feature(rustdoc_missing_doc_code_examples))]
|
|
#![cfg_attr(docsrs, warn(rustdoc::invalid_codeblock_attributes))]
|
|
#![doc = include_str!("../docs/lib.md")]
|
|
|
|
mod client;
|
|
mod credential;
|
|
mod error;
|
|
mod list;
|
|
|
|
pub use client::get_auth;
|
|
pub use client::get_client;
|
|
pub use credential::Credential;
|
|
pub use error::Error;
|
|
pub use list::List;
|