vx_cli/commands/
version.rs

1//! Version command implementation
2
3use crate::ui::UI;
4use anyhow::Result;
5
6pub async fn handle() -> Result<()> {
7    UI::info(&format!("vx {}", env!("CARGO_PKG_VERSION")));
8    UI::info("Universal Development Tool Manager");
9    Ok(())
10}