hypixel 0.1.0

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

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

    println!("{t:?}");
}