vx-cli 0.4.0

CLI interface for vx tool manager
Documentation
1
2
3
4
5
6
7
8
9
10
//! Version command implementation

use crate::ui::UI;
use anyhow::Result;

pub async fn handle() -> Result<()> {
    UI::info(&format!("vx {}", env!("CARGO_PKG_VERSION")));
    UI::info("Universal Development Tool Manager");
    Ok(())
}