use std::collections::HashMap; #[tokio::main] async fn main() -> Result<(), Box> { //getting the list of channels with id's first let resp = reqwest::get("https://raw.githubusercontent.com/bvanroll/home/static/yters.json") .await? .json::>() .await?; println!("{resp:#?}"); Ok(()) }