mermaid_cli/runtime/mod.rs
1//! Compatibility re-export for the internal runtime crate.
2//!
3//! New daemon, CLI, and TUI code should depend on the
4//! `mermaid-runtime` crate boundary. The `mermaid_cli::runtime` module is
5//! retained so existing call sites and downstream code do not need a
6//! flag-day import rewrite.
7
8pub mod client;
9pub mod protocol;
10
11pub use client::*;
12pub use mermaid_runtime::*;
13pub use protocol::DaemonRequest;