elevenlabs-cli 0.1.8

Unofficial CLI for ElevenLabs text-to-speech API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Update CLI arguments

use clap::Args;

/// Update arguments
#[derive(Args, Clone)]
pub struct UpdateArgs {
    /// Force update even if already up to date
    #[arg(long)]
    pub force: bool,

    /// Check for updates without installing
    #[arg(long)]
    pub check: bool,
}