tunein 0.1.4

A simple client to fetch radio stations from TuneIn
Documentation
1
2
3
4
5
6
7
8
9
use tunein::TuneInClient;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = TuneInClient::new();
    let results = client.search("alternativeradio.us").await?;
    println!("{}", serde_json::to_string_pretty(&results)?);
    Ok(())
}