soniq 0.0.2

A Rust library to interact with the Last.fm API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Soniq
//!
//! A Rust library to interact with the Last.fm API.

pub mod auth;
pub mod client;
pub mod endpoints;
pub mod error;
pub mod models;
pub mod sig;
pub mod utils;

pub use crate::error::Error;