hypixel/
lib.rs

1//! # Hypixel
2//! 
3//! This crate is an API wrapper for the Hypixel public API. All methods 
4//! that retrieve data is asynchronous and uses await.
5//! 
6//! Crate provides different structs to contact different endpoints.
7//! The modules are features and you can enable them or disable them.
8//! API requires an API token you can get from the Hypixel server by
9//! running the `/api` command.
10mod api;
11
12#[doc(inline)]
13pub use crate::api::error::HypixelError as Error;
14pub use crate::api::error;
15
16pub use crate::api::objects;
17
18pub use crate::api::handler;