1//! Event renderers for different output formats. 2//! 3//! Renderers consume events and produce output to various destinations. 4 5pub mod cli; 6pub mod json; 7 8pub use cli::CliRenderer; 9pub use json::JsonRenderer;