mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
cfeec22c82
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.
12 lines
156 B
Rust
12 lines
156 B
Rust
use super::*;
|
|
|
|
mod app_api;
|
|
mod cache;
|
|
mod sync;
|
|
mod ui;
|
|
|
|
pub(crate) use app_api::*;
|
|
pub(crate) use cache::*;
|
|
pub(crate) use sync::*;
|
|
pub(crate) use ui::*;
|