loctree 0.8.16

Structural code intelligence for AI agents. Scan once, query everything.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Command handlers split by domain
//!
//! This module organizes command handlers into domain-specific submodules
//! to keep the codebase maintainable.

pub mod ai;
pub mod analysis;
pub mod cache;
pub mod deprecation;
pub mod diff;
pub mod output;
pub mod query;
pub mod watch;