spotify_cli/types/
mod.rs

1//! Typed response structures for Spotify API.
2//!
3//! These types mirror the Spotify Web API response formats and provide
4//! type-safe access to response data instead of raw JSON.
5
6mod album;
7mod artist;
8mod common;
9mod playback;
10mod playlist;
11mod track;
12mod user;
13
14pub use album::*;
15pub use artist::*;
16pub use common::*;
17pub use playback::*;
18pub use playlist::*;
19pub use track::*;
20pub use user::*;