hypixel 0.1.0

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

#[doc(inline)]
pub use crate::api::error::HypixelError as Error;
pub use crate::api::error;

pub use crate::api::objects;

pub use crate::api::handler;