spotterm 0.1.3

Spotify を操作する CLI / TUI(公式 Web API・PKCE 認証)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Subcommand implementations. Each command starts from `auth::authed_client`
//! to obtain an authenticated client, then calls the Web API to display or
//! control results (read operations, playback, and playlist/library).

pub mod device;
pub mod devices;
pub mod lib;
pub mod playback;
pub mod playlist;
pub mod search;
pub mod status;

/// Hint shown when an operation that requires an active device fails (shared by playback / playlist).
pub(crate) const NEED_DEVICE_HINT: &str =
    "(An active device is required. Select one with `spotterm device use <name>`.)";