simulator: add option to disable BugBase

This commit is contained in:
Jussi Saurio 2025-06-02 12:13:02 +03:00
parent 09e6bb5438
commit 51e3a04668
2 changed files with 73 additions and 40 deletions

View file

@ -46,6 +46,8 @@ pub struct SimulatorCLI {
pub differential: bool,
#[clap(subcommand)]
pub subcommand: Option<SimulatorCommand>,
#[clap(long, help = "disable BugBase", default_value_t = false)]
pub disable_bugbase: bool,
}
#[derive(Parser, Debug, Clone, Serialize, Deserialize, PartialEq, PartialOrd, Eq, Ord)]