//! # One API
//! The Clickatell One API is a combined gateway for both SMS and Whatsapp messages.
//!
//! ```rust,ignore
//! let client = Client::new(api_key)?;
//!
//! if let Ok(status_response) = client.message_status(message_id).await? {
//! println!("Message Status: #{status_response}")
//! }
//!
//! if let Ok(balance_response) = client.balance().await? {
//! println!("Balance: {balance_response}");
//! }
//! ```
pub use ;
pub use Channel;
pub use ;
pub use Error;
pub use Result;