use csi_webclient::app;
fn main() -> eframe::Result<()> {
let mut options = eframe::NativeOptions::default();
#[cfg(target_os = "macos")]
{
options.run_and_return = false;
}
eframe::run_native(
"CSI Webserver Client",
options,
Box::new(|cc| Ok(Box::new(app::CsiClientApp::new(cc)))),
)
}