Add --open cli flag

This commit is contained in:
Joscha 2023-08-10 21:10:07 +02:00
parent 6ed6ff1a36
commit b5bdd49d9c
4 changed files with 57 additions and 1 deletions

View file

@ -14,6 +14,10 @@ pub struct ServerCommand {
/// Path to the bench repo.
#[arg(long, short)]
pub bench_repo: Option<PathBuf>,
/// Open the UI in your browser.
#[arg(long, short)]
pub open: bool,
}
#[derive(Debug, clap::Parser)]