vx_cli/commands/
where_cmd.rs

1//! Where command implementation
2
3use crate::ui::UI;
4use anyhow::Result;
5use vx_plugin::PluginRegistry;
6
7pub async fn handle(_registry: &PluginRegistry, tool: &str, all: bool) -> Result<()> {
8    UI::warning("Where command not yet fully implemented in new architecture");
9    UI::hint(&format!(
10        "Would show location of tool: {} (all: {})",
11        tool, all
12    ));
13    Ok(())
14}