spotify_cli/cli/args/
daemon.rs

1//! Daemon command arguments
2
3use clap::Subcommand;
4
5#[derive(Debug, Subcommand)]
6pub enum DaemonCommand {
7    /// Start the daemon in the background
8    Start,
9
10    /// Stop the running daemon
11    Stop,
12
13    /// Check if the daemon is running
14    Status,
15
16    /// Run the daemon in the foreground (for debugging/systemd)
17    Run,
18}