1//! Vulnerability services. 2 3pub use project_status::ProjectStatusAudit; 4 5pub mod osv; 6mod project_status; 7 8/// The shape of the vulnerability service. 9#[derive(Copy, Clone, Debug)] 10#[cfg_attr(feature = "clap", derive(clap::ValueEnum))] 11pub enum VulnerabilityServiceFormat { 12 Osv, 13}