use clap::Parser;
use std::path::PathBuf;
#[derive(Parser, Debug, Clone, Default)]
#[clap(version)]
pub struct Opts {
#[clap(long = "renode", env = "RENODE_RUN_RENODE_BIN")]
pub renode_bin: Option<PathBuf>,
#[clap(short = 'c', long = "config", env = "RENODE_RUN_CONFIG_FILE")]
pub config: Option<PathBuf>,
#[clap(short = 'o', long = "output", env = "RENODE_RUN_OUTPUT_DIR")]
pub output_dir: Option<PathBuf>,
#[clap(long)]
pub no_run: bool,
pub input: PathBuf,
}