use canic_installer::install_root::{InstallRootOptions, install_root};
fn main() {
if let Err(err) = run() {
eprintln!("{err}");
std::process::exit(1);
}
}
fn run() -> Result<(), Box<dyn std::error::Error>> {
install_root(InstallRootOptions::from_env_and_args())
}