1 2 3 4 5 6 7 8 9
//! Version command handler use anyhow::Result; /// Handle the version command pub fn handle_version() -> Result<()> { println!("memvid-cli {}", env!("CARGO_PKG_VERSION")); Ok(()) }