mod ssh_module;
mod aspen_module;
#[cfg(not(any(target_os = "macos", target_os = "linux", target_os = "windows")))]
use colored::Colorize;
use crate::aspen_module::cli::{run, init_aspen};
fn main() {
#[cfg(not(any(target_os = "macos", target_os = "linux", target_os = "windows")))]
{
eprintln!("\n[Aspen Error] => {}\n", "暂不支持 Windows、MacOs、Linux 之外的系统".red());
std::process::exit(0);
}
init_aspen();
run();
}