codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
1
2
3
4
5
6
7
8
9
//! CLI module for the codebase intelligence system.
//!
//! Provides command-line interface parsing and command dispatch.
//! Extracted from main.rs for better modularity.

pub mod args;
pub mod commands;

pub use args::{Cli, Commands, DocumentAction, PluginAction, RetrieveQuery};