downcida 0.1.3

A Rust crate to download audio files using the Lucida API
Documentation
1
2
3
4
5
6
7
8
use downcida::{Downcida, AudioFormat};
use std::env;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    Downcida::download("5xPcP28rWbFUlYDOhcH58l", env::current_dir()?, Some("AU"), AudioFormat::FLAC).await?;
    Ok(())
}