use anyhow::Error;
use manta_backend_dispatcher::types::bss::BootParameters;
pub fn print(
boot_parameters: &[BootParameters],
_output_opt: Option<&str>,
) -> Result<(), Error> {
println!("{}", serde_json::to_string_pretty(boot_parameters)?);
Ok(())
}