lmrc_cli/
lib.rs

1//! LMRC CLI Library
2//!
3//! This library exposes the core functionality of the LMRC CLI for testing purposes.
4
5pub mod generator;
6pub mod error;
7
8// Re-export commonly used types
9pub use error::Result;