1 2 3 4 5 6 7
mod channels; fn main() { let url = "https://api.somafm.com/channels.json"; let res = reqwest::blocking::get(url).unwrap().text().unwrap(); println!("{res}"); }