use anyhow::Result;
use serde::Serialize;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum OutputFormat {
Text,
Json,
}
impl OutputFormat {
pub fn from_json_flag(json: bool) -> Self {
if json { Self::Json } else { Self::Text }
}
}
pub fn print_json<T: Serialize>(value: &T) -> Result<()> {
println!("{}", serde_json::to_string_pretty(value)?);
Ok(())
}