app menu window

This commit is contained in:
2025-12-08 21:49:30 +08:00
parent 9c4a407820
commit 76d19aa5e6
17 changed files with 301 additions and 147 deletions

View File

@@ -1,20 +1,19 @@
use tracing::info;
use crate::{
services::{
auth::get_tokens, preferences::create_preferences_window, scene::create_scene_window,
},
services::{auth::get_tokens, scene::open_scene_window},
state::init_app_data,
system_tray::init_system_tray,
};
pub async fn start_fdoll() {
init_system_tray();
bootstrap().await;
}
async fn construct_app() {
init_app_data().await;
create_scene_window();
create_preferences_window();
open_scene_window();
}
pub async fn bootstrap() {