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
use hypixel::handler::skyblock;

#[tokio::test]
async fn skyblock() {
    let t = skyblock::bazaar().await.unwrap();

    println!("{:?}", t["CORRUPTED_BAIT"]);
}

#[tokio::test]
async fn client() {
    
}