consciousness/poc-memory/src/cli/mod.rs
ProofOfConcept aa2fddf137 cli: extract node commands from main.rs into cli/node.rs
Move 15 node subcommand handlers (310 lines) out of main.rs:
render, write, used, wrong, not-relevant, not-useful, gap,
node-delete, node-rename, history, list-keys, list-edges,
dump-json, lookup-bump, lookups.

main.rs: 2518 → 2193 lines.

Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
2026-03-14 18:02:12 -04:00

7 lines
171 B
Rust

// cli/ — command-line interface handlers
//
// Split from main.rs for readability. Each module handles a group
// of related subcommands.
pub mod graph;
pub mod node;