//! # octopust
//!
//! A high-performance, idiomatic Rust client for the Octopus Energy API.
//!
//! ## Example
//!
//! ```no_run
//! use octopust::Client;
//!
//! #[tokio::main]
//! async fn main() {
//! let client = Client::new("API_KEY");
//! let products = client.list_products().await.unwrap();
//! println!("{:?}", products);
//! }
//! ```
pub use Client;
pub use OctopustError;