This is a library that allows you to fetch lyrics to a song of your choosing.
This crate uses a lyrics.ovh API to fetch lyrics.
The library only contains one async method.
```Rust use lyricsovh::getlyrics;
pub async fn main(){ let lyrics = get_lyrics("Popular Monster", "Falling in reverse").await; println!("Lyrics to the song Popular monster by Falling in reverse: \n {}", lyrics); } ```