spotifav 0.2.1

An incredibly simple tool that adds/removes the currently playing track to favorites.
Documentation
1
2
3
4
5
6
7
8
9

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let sp = spotifav::get_client().await?;
    spotifav::do_toggle(&sp).await?;

    Ok(())
}