zenith_cli/commands/inspect/mod.rs
1//! `zenith inspect` command — module wiring.
2//!
3//! - `document` — error type, tree types, tree builders, node finder,
4//! geometry helpers, human renderers, and the public `run` entry point.
5//! - [`recipes`] — recipe-block JSON builder and human renderer.
6
7mod document;
8pub mod recipes;
9
10pub use document::{
11 InspectCmdErr, InspectNodeOutput, InspectOutput, NodeEntry, NodeGeometry, PageEntry,
12 build_doc_tree, find_node_tree, run, summary,
13};