mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +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.
14 lines
222 B
Rust
14 lines
222 B
Rust
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::*;
|