Eagel API
Eagle API client.
Usage
use EagleApi;
async ;
Eagle API client.
use eagle_api::EagleApi;
async {
let api = EagleApi::new("http://localhost:41595");
let items = api.item_list(None).await.unwrap();
println!("{:#?}", items);
};