//! `WakaTime` HTTP client library.
//!
//! This crate provides an async HTTP client for the
//! [`WakaTime` API](https://wakatime.com/developers).
//! It is designed to be usable independently of the `waka` CLI.
//!
//! # Example
//!
//! ```rust,no_run
//! use waka_api::WakaClient;
//!
//! async fn example() -> Result<(), waka_api::ApiError> {
//! let client = WakaClient::new("waka_xxxxxx");
//! let me = client.me().await?;
//! println!("Hello {}", me.username);
//! Ok(())
//! }
//! ```
pub use WakaClient;
pub use ApiError;
pub use ;
pub use ;