spotify-cli 0.5.0

A command-line interface for Spotify
Documentation
//! Command argument definitions.
//!
//! This module contains all the clap subcommand enums, organized by category.

mod auth;
mod browse;
#[cfg(unix)]
mod daemon;
mod library;
mod media;
mod player;
mod playlist;
mod user;

pub use auth::{AuthCommand, PinCommand};
pub use browse::{CategoryCommand, FollowCommand};
#[cfg(unix)]
pub use daemon::DaemonCommand;
pub use library::LibraryCommand;
pub use media::{AlbumCommand, AudiobookCommand, ChapterCommand, EpisodeCommand, ShowCommand};
pub use player::{DevicesCommand, PlayerCommand, QueueCommand};
pub use playlist::PlaylistCommand;
pub use user::{InfoCommand, UserCommand};