hypixel-sdk 0.2.1

Async client for the Hypixel Public API with typed models and SkyBlock helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub(crate) mod common;
mod guild;
mod misc;
mod player;
pub mod resources;
pub mod skyblock;
mod status;

pub use common::JsonObject;
pub use guild::{Guild, GuildMember};
pub use misc::{Booster, Counts, GameCount, HousingHouse, Leaderboard, PunishmentStats};
pub use player::Player;
pub use status::{RecentGame, Session};

pub(crate) use guild::GuildResponse;
pub(crate) use misc::{BoostersResponse, LeaderboardsResponse};
pub(crate) use player::PlayerResponse;
pub(crate) use status::{RecentGamesResponse, StatusResponse};