//! Table and JSON renderers for BSS boot parameter output.
useanyhow::Error;usemanta_shared::shared::dto::BootParameters;/// Print boot parameters in the requested format.
////// Currently only JSON pretty-print is supported.
pubfnprint(boot_parameters:&[BootParameters],
_output_opt:Option<&str>,
)->Result<(), Error>{println!("{}",serde_json::to_string_pretty(boot_parameters)?);Ok(())}