1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release use blp::run::run; fn main() { if let Err(e) = run() { eprintln!("{e}"); std::process::exit(1); } }