vx_cli/commands/
cleanup.rs1use crate::ui::UI;
4use anyhow::Result;
5
6pub async fn handle(
7 dry_run: bool,
8 cache_only: bool,
9 orphaned_only: bool,
10 force: bool,
11 older_than: Option<u32>,
12 verbose: bool,
13) -> Result<()> {
14 UI::warning("Cleanup command not yet fully implemented in new architecture");
15 UI::hint(&format!(
16 "Would cleanup with options: dry_run={}, cache_only={}, orphaned_only={}, force={}, older_than={:?}, verbose={}",
17 dry_run, cache_only, orphaned_only, force, older_than, verbose
18 ));
19 Ok(())
20}