refactor(tauri): decompose lib command surface into domain modules

Split the large lib command module into nested app_api, cache, sync, and ui submodules while preserving command signatures and behavior. This keeps command responsibilities isolated and makes further extraction safer.
This commit is contained in:
Maxim Isaev
2026-05-02 04:37:54 +03:00
committed by cucadmuh
parent c917ee1071
commit cfeec22c82
19 changed files with 4037 additions and 3982 deletions
+13
View File
@@ -0,0 +1,13 @@
use super::*;
mod core;
mod navidrome;
mod remote;
mod integration;
mod analysis;
pub(crate) use core::*;
pub(crate) use navidrome::*;
pub(crate) use remote::*;
pub(crate) use integration::*;
pub(crate) use analysis::*;