helix/dna/cmd/clean.rs
1use clap::Args;
2
3
4#[derive(Args)]
5pub struct CleanArgs {
6 /// All (defaults to false)
7 #[arg(long)]
8 all: bool,
9 #[arg(long)]
10 cache: bool,
11}
12
13
14
15
16pub async fn run(args: CleanArgs) -> anyhow::Result<()> {
17 println!("Clean command: all={}, cache={}", args.all, args.cache);
18 Ok(())
19}