move into gui folder for monorepo

This commit is contained in:
2024-11-11 12:24:51 -07:00
parent 7308a210e2
commit 30a94323b3
14 changed files with 810 additions and 459 deletions
+11
View File
@@ -0,0 +1,11 @@
use mumble_web2_gui::app;
pub fn main() {
#[cfg(feature = "desktop")]
let _guard = tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
.unwrap()
.enter();
dioxus::launch(app::app);
}