alopex-cli 0.6.0

Command-line interface for Alopex DB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Command implementations
//!
//! This module contains implementations for all CLI subcommands:
//! - kv: Key-Value operations
//! - sql: SQL query execution
//! - vector: Vector operations
//! - hnsw: HNSW index management
//! - columnar: Columnar segment operations

pub mod columnar;
pub mod hnsw;
pub mod kv;
pub mod lifecycle;
pub mod server;
pub mod sql;
pub mod vector;
pub mod version;