memvid-cli 2.0.140

Command-line interface for Memvid v2 - AI memory with crash-safe, single-file storage
Documentation
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(())
}