use mumble_web2_gui::{app, imp::init_logging}; pub fn main() { #[cfg(feature = "desktop")] let _guard = tokio::runtime::Builder::new_multi_thread() .enable_all() .build() .unwrap() .enter(); init_logging(); dioxus::launch(app::app); }