//! Fetch latest UV index.
//!
//! ```bash
//! cargo run --example uv
//! ```
mod common;
use satay_reqwest::{ReqwestActionExt, reqwest};
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let client = reqwest::Client::new();
let api = common::api_from_env();
let response = api.uv().send_with(&client).await?;
println!("{response:#?}");
Ok(())
}