spotify_cli/http/mod.rs
1//! HTTP client layer for Spotify API communication.
2//!
3//! ## Architecture
4//!
5//! - [`client`] - Low-level HTTP client wrapper using reqwest
6//! - [`api`] - `SpotifyApi` for authenticated requests to api.spotify.com/v1
7//! - [`auth`] - `SpotifyAuth` for token operations via accounts.spotify.com
8//! - [`endpoints`] - Type-safe URL builders for all API endpoints
9
10pub mod api;
11pub mod auth;
12pub mod client;
13pub mod endpoints;