Skip to main content

memvid_cli/commands/
version.rs

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