You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
351 B
13 lines
351 B
|
|
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))] |
|
fn main() { |
|
let ret = rusty_keys::main_res(); |
|
if let Err(e) = ret { |
|
println!("fatal error: {}", e); |
|
} |
|
} |
|
|
|
#[cfg(not(any(target_os = "windows", target_os = "linux", target_os = "macos")))] |
|
fn main() { |
|
panic!("sorry no main impl for this platform"); |
|
}
|
|
|