morpharch/commands/mod.rs
1// =============================================================================
2// commands/mod.rs — Subcommand modules
3// =============================================================================
4//
5// Each CLI subcommand lives in a separate module:
6// scan → Git repo scanning + dependency graph + drift score
7// analyze → Detailed drift report
8// watch → Scan + animated TUI launch
9//
10// Future additions:
11// diff → Graph comparison between two commits
12// =============================================================================
13
14pub mod analyze;
15pub mod scan;
16pub mod watch;