Files
Psychotoxical-psysonic/src-tauri/src/lib_commands/cache/mod.rs
T
Maxim Isaev cfeec22c82 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.
2026-05-02 13:44:25 +03:00

10 lines
132 B
Rust

use super::*;
mod offline;
mod downloads;
mod hot;
pub(crate) use offline::*;
pub(crate) use downloads::*;
pub(crate) use hot::*;