new entries

This commit is contained in:
2025-07-07 23:41:43 +02:00
parent 5445574d98
commit 78f67a8d25
2 changed files with 6 additions and 3 deletions

View File

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

View File

@@ -1 +1,4 @@
{} {
"squibquib":"UC-9-sjOyxoDCdQlVzObzGsw",
"sinixdesign":"UCUQTqWAaSzhAKRanOpes1nA"
}