codesearch 0.1.9

A fast, intelligent CLI tool with multiple search modes (regex, fuzzy, semantic), code analysis, and dead code detection for popular programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Command Handlers Module
//!
//! This module contains handlers for all CLI commands, extracted from main.rs
//! for better maintainability and testability.

pub mod analysis;
pub mod graph;
pub mod search;
pub mod util;

pub use analysis::{handle_analyze_command, handle_complexity_command};
pub use graph::{handle_cfg_command, handle_dfg_command, handle_graph_command};
pub use search::{handle_files_command, handle_search_command};
pub use util::{
    handle_circular_command, handle_deadcode_command, handle_duplicates_command,
    handle_health_command, handle_index_command, handle_watch_command,
};