mecha10_cli_core/framework/mod.rs
1//! CLI command execution framework
2//!
3//! Low-level abstractions: Command trait, CommandContext, error types,
4//! ProcessTracker, and template engine.
5
6#[allow(dead_code)]
7mod command;
8#[allow(dead_code)]
9mod context;
10#[allow(dead_code)]
11mod error;
12#[allow(dead_code)]
13mod process;
14mod template_engine;
15
16pub use template_engine::{TemplateEngine, TemplateVars};