listenbrainz 0.8.1

ListenBrainz API bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Contains low-level functionality to work with the ListenBrainz API.
//!
//! This module is mostly a thin wrapper around the HTTP API.
//! It contains the [`Client`] type, as well as low-level models
//! for [request] and [response] data.

mod client;
mod endpoint;
pub mod jspf;
pub mod request;
pub mod response;

pub use self::client::Client;