hlx 1.2.5

Configuration language designed specifically for ml/ai/data systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::Args;

#[derive(Args)]
pub struct ResetArgs {
    /// Force (defaults to false)
    #[arg(short, long)]
    force: bool,
}

#[derive(clap::Subcommand)]
pub enum ResetCommands {
    Reset(ResetArgs),
}

pub async fn run(args: ResetArgs) -> anyhow::Result<()> {
    println!("Reset command: force={}", args.force);
    Ok(())
}