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
//! This module stores all "handlers" for the Hypixel API. This was
//! made to seperate functionality.
//! 
//! Most of these require API key authentication. As such, you are 
//! provided with a `handler::Client` struct that stores the key.
#[cfg(feature = "players")]
pub mod player_data;
#[cfg(feature = "resources")]
pub mod resources;
#[cfg(feature = "skyblock")]
pub mod skyblock;
#[cfg(feature = "others")]
pub mod others;