spotify_web_api 0.1.0

A wrapper for the Spotify Web API
Documentation
//! Spotify Web API endpoints.

mod client;
mod endpoint;
mod error;
mod ignore;
mod paged;
mod params;
mod raw;

pub mod common;
pub(crate) mod query;

pub mod albums;
pub mod artists;
pub mod audiobooks;
pub mod categories;
pub mod chapters;
pub mod episodes;
pub mod genres;
pub mod markets;
pub mod player;
pub mod playlists;
pub mod search;
pub mod shows;
pub mod tracks;
pub mod users;

pub use client::*;
pub use endpoint::*;
pub use error::*;
pub use ignore::*;
pub use paged::*;
pub use params::*;
pub use query::{AsyncQuery, Query};
pub use raw::*;

mod prelude {
    pub use super::Pageable;
    pub use crate::{
        api::{BodyError, Endpoint, JsonParams, QueryParams},
        model::Market,
    };
    pub use http::Method;
    pub use std::borrow::Cow;
}