fume-core 0.0.2

A strongly-opinionated Rust wrapper for steam web APIs.
Documentation
1
2
3
4
5
6
7
8
use fume_core::app::get_app_list::GetAppListResponse;

#[test]
fn get_app_list_decode() {
    let content = std::fs::read_to_string("./tests/responses/get_app_list.json").unwrap();
    let response: GetAppListResponse = serde_json::from_str(&content).unwrap();
    println!("{:#?}", response);
}