spotterm 0.2.0

Spotify を操作する CLI / TUI(公式 Web API・PKCE 認証)
use clap::{Parser, Subcommand};

#[derive(Parser, Debug)]
#[command(
    name = "spotterm",
    version,
    about = "A Spotify TUI (official Web API, PKCE auth)"
)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Command,
}

#[derive(Subcommand, Debug)]
pub enum Command {
    /// Log in to Spotify (PKCE authentication)
    Login,
    /// Interactive TUI (Now Playing dashboard)
    Tui,
}