hlx 1.2.5

Configuration language designed specifically for ml/ai/data systems
Documentation
use clap::Args;
use std::path::PathBuf;


#[derive(Args)]
pub struct RemoveArgs {
    /// Files to remove
    #[arg(short, long)]
    files: Vec<PathBuf>,
}

#[derive(clap::Subcommand)]
pub enum RemoveCommands {
    Remove(RemoveArgs),
}

pub async fn run(args: RemoveArgs) -> anyhow::Result<()> {
    println!("Remove command with {} files", args.files.len());
    Ok(())
}