vectordb-cli 1.6.0

A CLI tool for semantic code search.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// src/edit/mod.rs
//! Core module for handling code editing operations.

/// // Cleanup
/// dir.close().unwrap();
/// ```
pub mod engine; // Module for the core editing logic
pub mod cli;    // Placeholder for CLI command implementation (later)

#[cfg(feature = "server")]
pub mod grpc;

// Re-export CLI args and handler
pub use cli::{EditArgs, handle_edit_command};

// Potentially re-export key functions or structs if needed
// pub use engine::apply_edit;