Skip to main content

ralph_workflow/rendering/
json_pretty.rs

1//! Generic JSON pretty-printing for display.
2//!
3//! This module provides the canonical entrypoint for JSON formatting.
4//! The implementation lives in `logger/output.rs` to avoid dependency cycles.
5//!
6//! # Architecture Note
7//!
8//! The format function is kept in `logger` module where it has access to
9//! verbosity settings. This module provides the canonical import path
10//! under `rendering`.
11
12pub use crate::logger::format_generic_json_for_display;