mermaid_cli/context/mod.rs
1// Gateway module for context - follows the Train Station Pattern
2// All external access must go through this gateway
3
4// Private submodules - not directly accessible from outside
5mod context;
6mod file_collector;
7mod token_counter;
8
9// Public re-exports - the ONLY way to access context functionality
10pub use context::{Context, ContextConfig};