Skip to main content

rlm_rs/cli/
mod.rs

1//! CLI layer for RLM-RS.
2//!
3//! Provides the command-line interface using clap, with commands
4//! for initializing, managing, and querying RLM state.
5
6pub mod commands;
7pub mod output;
8pub mod parser;
9
10pub use commands::execute;
11pub use output::OutputFormat;
12pub use parser::{Cli, Commands};