//! This crate contains the logic to read B2 credentials following the same logic
//! used by the B2 CLI.
//!
//! ```no_run
//! let creds = b2creds::Credentials::default().unwrap();
//! println!("Key ID: {} Key: {}", creds.application_key_id, creds.application_key);
//!```
//!
//! Look at the [`Credentials::default`], [`Credentials::from_env`]. and
//! [`Credentials::from_file`] to understand how to parse B2 credentials.
pub use *;