rusty-keys/src/main.rs

14 lines
351 B
Rust
Raw Normal View History

2021-10-09 01:39:10 -04:00
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
fn main() {
let ret = rusty_keys::main_res();
2017-11-16 23:21:21 -05:00
if let Err(e) = ret {
println!("fatal error: {}", e);
}
}
2021-10-09 01:39:10 -04:00
#[cfg(not(any(target_os = "windows", target_os = "linux", target_os = "macos")))]
fn main() {
panic!("sorry no main impl for this platform");
}