hypixel 0.1.0

Rust wrapper for the Hypixel public API.
Documentation
1
2
3
4
5
6
7
8
9
use hypixel::handler::player_data::Client;

#[tokio::test]
async fn guild() {
    let client = Client::login("");

    let guild = client.guild_from_name("amongus").await.unwrap().unwrap();
    assert_eq!(guild.name, "AmongUs");
}