alopex_cli/commands/mod.rs
1//! Command implementations
2//!
3//! This module contains implementations for all CLI subcommands:
4//! - kv: Key-Value operations
5//! - sql: SQL query execution
6//! - vector: Vector operations
7//! - hnsw: HNSW index management
8//! - columnar: Columnar segment operations
9
10pub mod columnar;
11pub mod hnsw;
12pub mod kv;
13pub mod lifecycle;
14pub mod server;
15pub mod sql;
16pub mod vector;
17pub mod version;