morpharch 2.2.3

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

pub mod analyze;
pub mod scan;
pub mod watch;