1 2 3 4 5 6 7 8 9 10 11 12
mod json; mod text; pub use json::print_json; pub use text::{print_remediations, print_text}; /// Supported output formats. #[derive(Debug, Clone, Copy, PartialEq, Eq, clap::ValueEnum)] pub enum OutputFormat { Text, Json, }