Files
Starlight_Lancher_animation_up/apps/installer-ui/src/main.rs

18 lines
326 B
Rust

#![cfg_attr(windows, windows_subsystem = "windows")]
#[cfg(windows)]
mod windows;
#[cfg(windows)]
fn main() {
if let Err(error) = windows::run() {
eprintln!("{error}");
std::process::exit(2);
}
}
#[cfg(not(windows))]
fn main() {
eprintln!("axolotl-installer-ui is only available on Windows");
}