1 2 3 4 5 6 7 8 9 10
//! This module provides ready-to-use data structures that //! link to responses from Hypixel's Public API. mod player; mod status; mod key; pub use player::{PlayerReply, PlayerData}; pub use status::{StatusReply, StatusData}; pub use key::{KeyReply, KeyData};