//! Daemon command arguments
useclap::Subcommand;#[derive(Debug, Subcommand)]pubenumDaemonCommand{/// Start the daemon in the background
Start,/// Stop the running daemon
Stop,/// Check if the daemon is running
Status,/// Run the daemon in the foreground (for debugging/systemd)
Run,}