chartlyrics 0.1.0

Rust bindings for the ChartLyrics lyric API
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(clippy::needless_return)]
mod client;
#[cfg(feature = "async")]
pub use client::Client;
#[cfg(feature = "blocking")]
pub use client::BlockingClient;

pub mod models;

pub(crate) mod api;