20ft anaconda

This commit is contained in:
gallant 2023-05-12 09:25:14 -05:00
parent 20a3b19f83
commit 72d1967315

View file

@ -2,8 +2,12 @@ use clap::Command;
mod scriptwrap;
use scriptwrap::{Player, PlayerError};
#[cfg(target_os = "macos")]
fn main() -> std::process::ExitCode {
if !cfg!(target_os = "macos") {
eprintln!("[ERROR] Wrong OS Dummy!");
return std::process::ExitCode::FAILURE;
}
match run() {
Ok(()) => std::process::ExitCode::SUCCESS,
Err(e) => {