use std::process::ExitCode;
use clap::Parser;
#[derive(Parser, Debug, Clone, PartialEq)]
pub struct Install {
pub config: Option<String>,
}
impl Installer for Install {
fn do_install(&self) -> anyhow::Result<ExitCode> {
eprintln!(
"Not yet implemented for this operating system ({})!",
std::env::consts::OS
);
Ok(ExitCode::FAILURE)
}
}