added html_report option #689

This commit is contained in:
DastInDark
2022-09-23 15:29:45 +09:00
parent 061447a26b
commit d3c6a65f5b

View File

@@ -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<PathBuf>,
}
impl ConfigReader<'_> {