tlyrics 0.1.1

Fetch synced lyrics (with timestamps) using the LRC format.
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use tlyrics::search;

#[tokio::main]
async fn main() -> Result<()> {
    let res = search("slow dancing in the dark").await?;
    println!("{:#?}", res);
    Ok(())
}