From d3c6a65f5b8e021075ffba657625da46ac50c95a Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Fri, 23 Sep 2022 15:29:45 +0900 Subject: [PATCH] added html_report option #689 --- src/detections/configs.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index f1849a65..8e8a2e49 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -248,6 +248,10 @@ pub struct Config { /// Do not display result summary #[clap(help_heading = Some("DISPLAY-SETTINGS"), long = "no-summary")] pub no_summary: bool, + + /// Save detail Results Summary in html (ex: results.html) + #[clap(help_heading = Some("OUTPUT"), short = 'H', long="html-report", value_name = "FILE")] + pub html_report: Option, } impl ConfigReader<'_> {