Remove unused clean CLI command

This commit is contained in:
Nick Pegg 2025-04-29 15:52:17 -07:00
parent 49d36f1d75
commit 50d5fcd5de

View file

@ -16,7 +16,6 @@ fn main() -> anyhow::Result<()> {
println!("Generate, quick: {quick}");
todo!()
}
Commands::Clean {} => todo!(),
}
Ok(())
@ -42,6 +41,4 @@ enum Commands {
#[arg(long)]
quick: bool,
},
/// Remove all generated content from the photo album directory
Clean {},
}