Skip to main content

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;
9
10pub use client::*;
11pub use mermaid_runtime::*;