use clap::Args;
#[doc(hidden)]
pub mod engine;
#[doc(hidden)]
pub mod signals;
#[derive(Debug, Clone, Args)]
pub struct ApiKeyArg {
#[arg(long, env = "SIMULATOR_API_KEY")]
pub api_key: String,
}
impl ApiKeyArg {
pub fn get(&self) -> String {
self.api_key.clone()
}
}